org.apache.ibatis.reflection.ReflectionException: There is no getter for property named 'healthCardId' in 'class com.aaa.entity.CReport'
时间: 2024-06-17 18:06:11 浏览: 112
Mybatis报错: org.apache.ibatis.exceptions.PersistenceException解决办法
这个异常表示在类 com.aaa.entity.CReport 中没有名为 'healthCardId' 的属性的 getter 方法。在 MyBatis 中,通过反射来设置 Java 对象的属性值,如果属性不存在或者没有相应的 getter/setter 方法,就会抛出 ReflectionException 异常。所以,你需要检查一下 com.aaa.entity.CReport 类中是否存在名为 'healthCardId' 的属性,以及是否有对应的 getter 方法。如果确实不存在,你需要添加相应的属性和 getter 方法。如果已经存在,但是还是出现了这个异常,可能是由于属性名字拼写错误或者大小写不一致导致的,你需要仔细检查一下代码中的拼写和大小写问题。
阅读全文