新しくバックアップされたデータベースをアタッチした後、例外が発生します。
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;
}
...
そして、ここを参照する例外は、それが例外を与え始めたものからですか?