-->
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.  [ 3 posts ] 
Author Message
 Post subject: Disabling LazyInitializationException
PostPosted: Mon Nov 01, 2004 4:26 pm 
Newbie

Joined: Fri Oct 29, 2004 7:50 am
Posts: 1
Hibernate version:
2.1.6

Is there a way that we can disable somehow Hibernate of throwing LazyInitializationException. I want to use Lazy="true" for some of my relationships. The problem is that I have generated code between a client and a WebService end point and this generated code try to access every single property of an object to stream it into XML and back for the SOAP request. Therefore, I'd prefer to have a dumb NULL if accessing a Lazy attribute.

By the way, the session is being closed already, since I don't spam the session to user request. I handle the sessions very atomic on a layer on my architecture, not letting any client deal with Hibernate sessions.

Thanks,
Marcelo.


Top
 Profile  
 
 Post subject:
PostPosted: Mon Nov 01, 2004 10:04 pm 
Regular
Regular

Joined: Sat Aug 28, 2004 4:15 pm
Posts: 61
This is kind of an interesting question...


I think the lazyInitialization exception occurs for your detached objects because while you think you're dealing with the object itself, you're actually dealing with a proxy to it.

One trick to get around it would be to use org.apache.commons.beanutils.CopyProperties to copy all the properties from your proxied object to a true represenation of your pojo. This is a bit of a hack however.


I'd like to see what some of the experts say about your original question...


Joe

_________________
Joe W


Top
 Profile  
 
 Post subject:
PostPosted: Sat Jan 22, 2005 12:50 am 
Senior
Senior

Joined: Sun Oct 26, 2003 5:05 am
Posts: 139
You can create two classes and two mappings that point to the same table.

For example, object A has all the properties that are not lazy and object B will inherit object A and will only include lazy properties. That way you can just load object A instead. Make sure that object's B's mapping has polymorphic="explicit" in the mapping.


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