There is no getter for property named 'null' in
时间: 2023-11-28 18:39:57 浏览: 84
使用Mybatis遇到的there is no getter异常
"There is no getter for property named 'null' in 'class java.lang.Integer'这个错误是由于在Mybatis中使用了if判断语句时,对一个空值进行了判断。在这种情况下,Mybatis会尝试在对象中找到与属性名对应的getter方法,但是对于null值,它无法找到对应的getter方法,从而报错。解决这个问题的方法是,在if判断语句中增加对null值的判断,或者在创建实体类时,为所有属性都设置对应的getter方法。"
阅读全文