org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.reflection.ReflectionException: Could not set property ‘id’ of ‘class com.example.demo.entity.User’ with value ‘1454753531283935233’ Cause: java.lang.IllegalArgumentException: argument type mismatch
解决办法;
第一种 在实体字段中配置 @TableId(type = IdType.AUTO)
@TableId(type = IdType.AUTO)
private Integer id;
第二种 要是影响所有实体的配置,可以设置全局主键配置
#全局设置主键生成策略
mybatis-plus.global-config.db-config.id-type=auto