hibernate实体类报错:Could not find a setter for property * in class * 解决方法
程序员文章站
2022-04-13 22:15:44
...
一、说明
这是由于hibernate @Entity @Table 实体类中不可以随便添加与表字段不对应的get方法,如增加请加注解 @Transient
注意:这种方法包括isXXX方法(比如下面例子的isEmpty方法)
二、例子
@Transient
public int getTotalEnrollment() {
return enrolledStudents.size();
}
@Transient
public boolean isEmpty() {
if (sectionsOffered.size() == 0) return true;
else return false;
}