I'm using a relational DB using a single column pk with a few nested tables.
I need to add a simple archiving to my project. The archiving only happens when the application reaches a particular state, so what I was hoping to do was copy my existing hibernate object into a new instance where the new instance would be saved with a new ID while leaving the existing object intact.
I can't seem to figure out how to copy the existing object into a new instance without manually having to set every single new instance field.
Does anybody know of a simple way of doing this?
Just retrieve the object, detach it, set the id to null and persist it.
MyEntity clone = entityManager.find(MyEntity.class, ID);
entityManager.detach(clone);
clone.setId(null);
entityManager.persist(clone);
If your object have oneToMany relationships, you will have to repeat the operation for all the children but setting your parent object id (generated after the persist
call) instead of null.
Of course you will have to remove any CASCADE persist
on your OneToMany relationships cause otherwise your persist will create duplicates of all children in DB or fk constraint failures.