i am getting the above error \"org.hibernate.ObjectDeletedException: deleted object would be re-saved by cascade (remove deleted object from associations): \". could someone
If you are doing this via XML (and not annotations), below is a solution which worked for me:
One-to-Many Associations:
CAUTION: session.flush() is important as the Hibernate needs to see the changes,
If you cannot flush the session, I would advise you to do steps (1,2) in a different transaction and then do steps (4,5,6) in a new transaction.