博客园 首页 私信博主 显示目录 隐藏目录 管理

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;

 

posted @ 2021-03-03 10:21  MrSharp  阅读(4705)  评论(0)    收藏  举报