关于mybatis plus出现There is no getter for property named ‘null‘ in ‘xx‘

在使用mybatis plus的 updateById报错
There is no getter for property named ‘null’ in ‘xx’

后来发现是忘记加注解@TableId

解决方案::把实体类中的主键字段(如果设计数据库时没有设计主键,一般把在ID上即可,毕竟是updateById)加上这个注解,解决问题。

底层原理是mybatis plus初始化的时候,首先会去加载主键,如果不知道主键是哪个字段的话就没法使用像 updateById 这种方法,@TableId注释就是告诉mybatis plus实体类的主键是谁。

上一篇:找名人 277. Find the Celebrity


下一篇:Sentinel整合OpenFeign时出现循环依赖解决(Is there an unresolvable circular reference?)