-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 1 post ] 
Author Message
 Post subject: How avoid NonUniqueObjectException in these situations?
PostPosted: Sat May 14, 2005 9:33 am 
Regular
Regular

Joined: Tue Oct 12, 2004 9:02 am
Posts: 66
Location: Italy
This is my pattern in an Struts Action method:

Course course = getCourse(); //get a course object from hibernate
Area area = (Area) get(request, "area"); //get area from user session
getAreaService().save(area); //attach area to hibernate session
...


the last operation throws an
net.sf.hibernate.NonUniqueObjectException: a different object with the same identifier value was already associated with the session.

This is because area object which its own courses was previously loaded in another request, is reattached to the hibernate session with "save". Hibernate sees that one of area's child (one of its course) as already in session because of the operation
getCourse();

I am using an Hibernate session for request.

How can I avoid this annoiyng situation?

thanks in advance

Alberto.


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 1 post ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.