首页
编程随笔
Java笔记
Html/Css/Js
Android
后端笔记
服务器搭建
BUG收集
Java异常
Android异常
在线工具
Json格式化
编码/解码
Epub在线编辑
登录
发布文章
个人文章
退出登录
首页
技术教程
BUG收集
在线工具
资源下载
登录
发布文章
退出登录
搜索
当前位置:
首页
-
博客
- 正文
关闭
mybatisplus出现Could not set property 'ID' of 'class ' xxx with value '1'
更新时间:2023-04-22 09:16:02
阅读数:1069
发布者:落幕
```java org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.reflection.ReflectionException: Could not set property 'id' of 'class com.speechb.entity.BookType' with value '1649581862303162370' Cause: java.lang.IllegalArgumentException: argument type mismatch at ``` #### 给id设置自增,不需要插件生成 ```java @TableId(type = IdType.AUTO) private Integer id; ```