Quote:
Would kindly point me to the appropriate points within the documentation where I might reference the particular 'unmodified' code fragments you mention?
I'm referring to the mapping itself. When the documentation gives an example for a parent-child-relationship, I expect reparent to work.
That is what caused the discussion: The last example in 21.3 reads:
Quote:
<set name="children" inverse="true" cascade="all-delete-orphan">
This is exactly what I used in my code and it didn't work, so I suspected a bug in Hibernate when I couldn't find a test case in the sources.
Just to recap: With this code, I could insert, add, edit children and move them around
in one collection. It only fails when one tries to move a child from one collection to the other.
I suggest that you mention this is a shortcoming of delete-orphan in 21.3 along with an example how to deal with it. How about this:
Unfortunately, Hibernate can become confused when you try to move a child from one parent to the other when you use all-delete-orphan. The reason behind is that Hibernate sees this as two operations: First, the child is deleted from the first collection which translates into a DELETE sent to the database because the child is now an orphan (it's no longer connected to anyone).
Next, the same child is added to a different collection which means the DELETE must be relaced with an UPDATE. But Hibernate cannot know that these two operations are related, so it cannot do this. Instead, it sees that an object which is marked for deletion, suddenly appears somewhere else, so it throws an ObjectDeletedException.
If you need reparenting of children, you have to use cascade="all". When you have to delete children, you must do so manually as described above.
Regards,