附加新备份的数据库后,我得到一个例外:
Caused by: org.hibernate.PropertyAccessException: exception setting property value with CGLIB (set hibernate.cglib.use_reflection_optimizer=false for more info) setter of com.mytest.User.setPrimaryAccount
在我的User类中,我有以下字段:
...
private boolean isPrimaryAccount;
public boolean getPrimaryAccount() {
return isPrimaryAccount;
}
public void setPrimaryAccount(boolean primaryAccount) {
isPrimaryAccount = primaryAccount;
}
...
从这里开始给出异常的引用异常?
答案 0 :(得分:8)
附加新备份数据库后
我认为,您的数据库表中有可为空的列,并且您在持久化类中使用了primitve类型的boolean(不能设置为null)。我认为这就是你得到这个例外的原因。
Hibernate建议你:
我们建议您声明一致命名的标识符属性 持久化类和你使用可空的(即, 非原始的类型。
将布尔值更改为布尔值,这可能会有所帮助......