使用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;

 

相关文章:

  • 2022-12-23
  • 2021-12-10
  • 2021-12-02
  • 2021-08-19
  • 2022-12-23
  • 2021-06-29
  • 2021-07-26
  • 2021-08-09
猜你喜欢
  • 2022-01-07
  • 2021-07-16
  • 2022-12-23
  • 2022-12-23
  • 2021-04-19
  • 2022-12-23
  • 2022-01-23
相关资源
相似解决方案