java.lang.IllegalArgumentException: argument type mismatch【@TableId】

Request processing failed; nested exception is org.mybatis.spring.MyBatisSystemException: 
nested exception is org.apache.ibatis.reflection.ReflectionException:
Could not set property 'userId' of 'class com.xdx.entitys.pojo.SyUser' with value '1266635804901814274' 
Cause: java.lang.IllegalArgumentException: argument type mismatch] with root cause

这个异常就是一个参数类型不匹配的问题,比如你的数据库是int,但是你插入的是String,所以按照这个思路去解决就好了。




但是我怎么修改类型都是不对,我使用到了MyBatisPlus 里面的 @TableId 注解,一般我加上都没什么问题。但是我这次主键使用的是自增长,那么应该这样写。

/**
 * 用户id
 */
@TableId(value = "user_id",type = IdType.AUTO)
private Integer userId;

你可能感兴趣的:(#,JAVAEE异常)