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;

相关