Mybatis Plus 更新时间 creatDate字段报错 Could not set property ‘createTime‘ of ‘class com.songqiao.pojo.User

原因:在使用mybatis-plus自动填充时间字段时,在配置类中的时间类型与实体类中的时间类型不一致导致的。

例如:实体类中使用的是LocalDateTime时间类型

Mybatis Plus 更新时间 creatDate字段报错 Could not set property ‘createTime‘ of ‘class com.songqiao.pojo.User_第1张图片

            而在自动填充的配置类中使用的是Date时间类型

Mybatis Plus 更新时间 creatDate字段报错 Could not set property ‘createTime‘ of ‘class com.songqiao.pojo.User_第2张图片

解决:统一时间类型即可

Mybatis Plus 更新时间 creatDate字段报错 Could not set property ‘createTime‘ of ‘class com.songqiao.pojo.User_第3张图片 

你可能感兴趣的:(MyBatis-Plus,mybatis,java,开发语言)