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.
|