| Author |
Hibernate and extra insert
|
Marco Tulio Borges
Ranch Hand
Joined: Sep 14, 2004
Posts: 45
|
|
I have a problem with Hibernate (Annotations). Here are my Entities: This one works just fine. The other one that does not is here: Now, the problem: before I persist ProblemEntity, I call: After this code, I try to save my ProblemEntity and then flush the session object (the same session that retrieved e1). Even though e1 is not transient and has a valid ID (I checked it), Hibernate tries to insert both problemEntity and e1 (in this order). What am I doing wrong? (both classes are mapped in hibernate.cfg.xml) [ May 21, 2008: Message edited by: Marco Tulio Borges ]
|
.: SCJP 1.4 (95%) / SCWCD 1.4 (91%) / SCBCD (77%) :.
"Sometimes I think the surest sign that intelligent life exists elsewhere in the universe is that none of it has tried to contact us." - Calvin
|
 |
Stevi Deter
Ranch Hand
Joined: Mar 22, 2008
Posts: 265
|
|
Marco, It looks like you need to pick which side of the association is the owner, and on the annotation for the other side, include the mappedBy attribute on the inverse side. This will let the owning side of the association manage the relationship, and tell the inverse side it is not responsible for maintaining that relationship.
|
There will always be people who are ahead of the curve, and people who are behind the curve. But knowledge moves the curve. --Bill James
|
 |
 |
|
|
subject: Hibernate and extra insert
|
|
|