-->
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.  [ 5 posts ] 
Author Message
 Post subject: org.hibernate.LazyInitializationException
PostPosted: Tue Jan 10, 2006 7:12 am 
Newbie

Joined: Mon Jun 06, 2005 10:11 am
Posts: 14
Hi,
I have enabled second level cache for parent and its child collection. The section of hbm for the child objects is given below.

I use criteria query on parent , close the session and return the parent. Now when I try to get the child elements I get the exception below.

I searched the list, but could not get much clue.

Thanks
Ashwani




Hibernate version:3.0

Mapping documents:
<set name="codeAttributes" lazy="false" inverse="true" cascade="all,delete-orphan" order-by="ATTRIBUTE_NAME">
<cache usage="transactional" region="CodeMaster" />


<key column="CODE_MASTER_ID"/>
<one-to-many class="com.sony.spe.ifds.domain.CodeAttribute"/>
</set>


Full stack trace of any exception that occurs:
org.hibernate.LazyInitializationException: could not initialize proxy
- the owning Session was closed
at org.hibernate.proxy.AbstractLazyInitializer.initialize()V(AbstractLazyInitializer.java:53
) at org.hibernate.proxy.AbstractLazyInitializer.getImplementation()Ljava.lang.Object;(Abstrac
tLazyInitializer.java:84) at org.hibernate.proxy.CGLIBLazyInitializer.intercept(Ljava.lang.Object;Ljava.lang.reflect.M
ethod;[Ljava.lang.Object;Lnet.sf.cglib.proxy.MethodProxy;)Ljava.lang.Object;(CGLIBLazyInitializer.java:134)


Name and version of the database you are using:Oracle 9i


Top
 Profile  
 
 Post subject:
PostPosted: Wed Jan 11, 2006 3:56 am 
Regular
Regular

Joined: Tue Dec 14, 2004 5:21 am
Posts: 104
Location: india
using second level cache doesnt mean it wont need a session . when u query a cached data , the session is involved in retrieving the object even if it is cached . ie, the caching is not independent , but related to session only . but the data will be loaded from cache if it is availabe in the secondary cache .

_________________
sHeRiN
thanks for your ratings ...... :)


Top
 Profile  
 
 Post subject:
PostPosted: Wed Jan 11, 2006 5:39 am 
Newbie

Joined: Mon Jun 06, 2005 10:11 am
Posts: 14
but second level cache is working for the parent class. What might be the reason for this ? Its not throwing this exception


Top
 Profile  
 
 Post subject:
PostPosted: Fri Jan 13, 2006 12:22 am 
Regular
Regular

Joined: Tue Dec 14, 2004 5:21 am
Posts: 104
Location: india
please provide the code you are using to retrieve the parent and child from the cache .

http://www.hibernate.org/hib_docs/v3/reference/en/html_single/#performance-sessioncache

_________________
sHeRiN
thanks for your ratings ...... :)


Top
 Profile  
 
 Post subject:
PostPosted: Thu Mar 23, 2006 2:52 pm 
Regular
Regular

Joined: Tue Dec 09, 2003 2:39 pm
Posts: 106
Location: Toronto, Canada
Two queries :

1. So, knowing this what is the suggested idiom for working with lazy second-level cached objects?

For example, using the Open Session In View pattern once the request, and thus session, has completed you may now have entities in the second-level cached which are proxied.

On a subsequent request, if you'd cached those entities on the client side, you'd have to manually re-associate the object via Session.Lock() to the current session in order to properly lazy load it from the second-level cache.

Does that make sense? Assuming the above is correct, which is fine, can anyone suggest a cleaner approach? I mean is this done typically through some interceptor or home-grown aspect?

2. Given a parent object that has lazy collections in the second-level cache, is it suffice to lock the parent only?

Cheers,
Roll

Inquiring minds want to know! :D


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

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.