Hi, I've got a Hibernate mapped object that contains a set of other object that contains a set of user defined type enums. I'm setting default-lazy="false" at the top of my mapping file and even setting lazy="false" on the two levels of collections, but if I don't force the object to be fully loaded as soon as I get it back from Hibernate and pass it back to my remote client, I get lazy initialization exceptions everytime.
Has anyone seen this problem before? I'm running Hibernate 3.2.7. with Java 1.6.
|