-->
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: saveOrUpdateCopy memory leak?
PostPosted: Wed Jan 26, 2005 12:06 am 
Beginner
Beginner

Joined: Mon Nov 15, 2004 8:32 pm
Posts: 36
Anyone knows if the Session.saveOrUpdateCopy call causes memory leak?
We have the following persistent object model:

class A {
Set Bs; // A has a one-to-many relationship with B
}

class B {
A a; // many-to-one side of A
}

Somehow, we ran into a case (after the following code):

A a = session.saveOrUpdateCopy(A);

The new A object saveOrUpdateCopy() returns has a new B, but the new B object is referencing back to the old A (instead of the A returned by saveOrUpdateCopy). So the old A was never garbage collected. Anyone knows what would cause it? Is it a known problem? Any workaround?

Thanks,
--Jiunjiun


[b]Hibernate version:[/b]
2.1.7

[b]Mapping documents:[/b]

[b]Code between sessionFactory.openSession() and session.close():[/b]

[b]Full stack trace of any exception that occurs:[/b]

[b]Name and version of the database you are using:[/b]
postgres 7.x

[b]The generated SQL (show_sql=true):[/b]

[b]Debug level Hibernate log excerpt:[/b]


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.