Is there a way to force hibernate to save a new instance of an object (new identifier) on saveOrUpdate when an object is dirty (been modified)? Is this possible via configuration or Interceptor? I have three entities:
Entity A (has B)
Entity B
Entity C (has B)
Entity B can only be updated through A
Basically I want C to always hold a snapshot of B when it (C) is created and saved and not directly reference the instance of B that is referenced by A.
B should be modifiable and A should point to the latest version of B.
I could do this manually by implementing equals method, checking for equality and nullifying the id field of B when necessary before calling saveOrUpdate(). Is there a built in way in Hibernate or simpler way?