After adding a new backup database, I get an exception:
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
In my User class, I have the following fields:
... private boolean isPrimaryAccount; public boolean getPrimaryAccount() { return isPrimaryAccount; } public void setPrimaryAccount(boolean primaryAccount) { isPrimaryAccount = primaryAccount; } ...
And the exception referencing here from the fact that it started to throw an exception?
source share