-->
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.  [ 2 posts ] 
Author Message
 Post subject: LazyInitializationException
PostPosted: Wed May 11, 2005 5:56 am 
Newbie

Joined: Wed May 11, 2005 5:23 am
Posts: 4
Hello!
I am new to Hibernate but we choose it as foundation brick for our banking application because it is a wonderful approach to OMR.
I got a LazyInitializationException with the following code:

Code:
1 - users = session.createQuery("from UserImpl").list();   
2 - IAddress ads=((IUser)users.get(0)).getAddress() ;
3 - String description=ads.getDescription();
4 - session.close();


I deleted some debug/logging code and some business. But the example is quite exaustive.

the hbm configs:

Code:
<many-to-one  name="address"
                       column="UT_ADDRESS"
                       class="com.ggs.sso.implementation.AddressImpl"
                       not-null="true">
</many-to-one>


if I put lazy="false" obviously I get my code working good, without it I get LazyInitializationException on line 3.

To solve this I had to modify my code in:


Code:
1 - users = session.createQuery("from UserImpl").list();   
2 - IAddress ads=((IUser)users.get(0)).getAddress() ;
     session.update(ads);
3 - String description=ads.getDescription();
4 - session.close();


Obviously using this way I attatch again the proxy to hibernate... but I think it's not the correct way to handle the problem...

Best regards to you all.

Alessandro


Top
 Profile  
 
 Post subject: Update
PostPosted: Wed May 11, 2005 10:12 am 
Newbie

Joined: Wed May 11, 2005 5:23 am
Posts: 4
Finally we got it!

the code in my topic was:

Code:
1 - users = session.createQuery("from UserImpl").list();   
2 - IAddress ads=((IUser)users.get(0)).getAddress() ;
3 - String description=ads.getDescription();
4 - session.close();


and we got the exception on line 3.
But the code posted wasn't really this because we extended ArrayList class to manage some stuff.
The code really looks like this:

Code:
1 - users = session.createQuery("from UserImpl").list();   
[b]2 - users = new MyArrayListImplementation( users ); [/b]
3 - IAddress ads=((IUser)users.get(0)).getAddress() ;
4 - String description=ads.getDescription();
5 - session.close();


The MyArrayListImplementation constructor just delegate the super class to inizialize the array.

I suppose that the "proxied" list that we get from list() (line 1) isn't compatible with this approach because issues with deep copy or delegation (I dont know really).

But is that a good behaviour? I don't know...

Anyway. I set the

Code:
<many-to-one  name="address"
                       column="UT_ADDRESS"
                       class="com.ggs.sso.implementation.AddressImpl"
                      lazy ="false"
                      fetch= "join" (this was added later but no better result)
>
</many-to-one>


with lazy = "false".
I was sure that the "proxy" would be not present inside my property instead it seems that the lazy property is ignored at all.

Any Idea?

Thanks


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 2 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.