ReflectionException: Could not set property ‘id‘ of x argument type mismatch

91 篇文章 2 订阅

现象

        在使用mybatisplus进行save数据保存时,出现异常。

2022-01-08 16:58:05.849 ERROR 22846 --- [nio-8081-exec-1] o.a.c.c.C.[.[.[/].[dispatcherServlet]    : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.reflection.ReflectionException: Could not set property 'id' of 'class com.liubike.fw.keys.po.SingleKeyPo' with value '1479739173351813122' Cause: java.lang.IllegalArgumentException: argument type mismatch] with root cause

java.lang.IllegalArgumentException: argument type mismatch
	at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
	at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.base/java.lang.reflect.Method.invoke(Method.java:566)

原因

        mybatisplus存储对象时,对象中有id字段,且ip为空时,会自动给id赋上一个long的雪花id,导致存入int类型的id数据表中,表中id为自增序列。

调整方案

        增加@TableId(value = "id",type= IdType.AUTO)注解,mybatisplus就不会生成id,而交给数据库自动生成。

@Data
@TableName("lizz_test")
public class LizzTestPo {
    @TableId(value = "id",type= IdType.AUTO)
    private Integer id;
    ...
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

lizz666

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值