Hello :)
Can you tell me how to clear references to other deleted objects ?
Here's an simple example : The "customer" object references an instance of Country (=> country n°1).
If a "customer" references this country and that the country n°1 is deleted, I'll have the following error message when loading the customer :
Quote:
No row with the given identifier exists: [com.company.webapp.bo.Country#1]; nested exception is org.hibernate.ObjectNotFoundException: No row with the given identifier exists: [com.company.webapp.bo.Country#1]
Can something be done about it ?
Is it possible to automatically clear these references ?
thanks !