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

com.mysql.cj.exceptions.WrongArgumentException: Invalid argument value: java.io.NotSerializableExcep,第1张

com.mysql.cj.exceptions.WrongArgumentException: Invalid argument value: java.io.NotSerializableExcep 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.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);
    }

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5683958.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-17
下一篇 2022-12-17

发表评论

登录后才能评论

评论列表(0条)

保存