Can Hibernate delete orphaned collections when updating a detached object?
I know that deleting orphaned child objects is a common question on SO and a common problem for people new to Hibernate, and that the fairly standard answer is to ensure that you have some variation of cascade=all,delete-orphan or cascade=all-delete-orphan on the child collection. I'd like to be able to have Hibernate detect that child ...