Could not set property 'id' of 'class com.xxx.xxEntity'


使用mybatisplus的save功能时,系统报错如下:

Could not set property 'id' of 'class com.xxx.xxEntity' with value '1366933168459902978' Cause: java.lang.IllegalArgumentException: argument type mismatch

mysql配置:id类型int(11),主键,自增

解决方案:

在实体类中给id增加注解:

    /**
     * 主键id
     */
    @TableId(value = "id",type = IdType.AUTO)
    private Integer id;

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM