Bootstrap

【已解决】Invalid argument value: java.io.NotSerializableException

com.mysql.cj.exceptions.WrongArgumentException: Invalid argument value: java.io.NotSerializableException

错误原因 dao模块下实现类的删除语句写错了
解决方案 修改删除语句
修改前: 会报错

 @Override
    public void del(int id) {
        String sql="delete from artitle where aid=?";
        int update = jdbcTemplate.update(sql,new BeanPropertyRowMapper<Artitle>(Artitle.class),id);
        System.out.println(update);
    }

修改后: 不在报错

@Override
    public void del(int id) {
        String sql="delete from artitle where aid=?";
        int update = jdbcTemplate.update(sql,id);
        System.out.println(update);
    }
;