jaxb « Load « JPA Q&A





1. How do you turn off hibernate lazy loading for all domain classes in grails?    stackoverflow.com

The question states what I want to do. I have a bunch of classes with attributes annotated with JAXB annotations, and the results are coming back blank because of lazy loading ...

2. (moxy) jaxb marshaling and hibernate proxy objects    stackoverflow.com

In the last couple of days I have tried to make support for XML marshalling/unmarshalling of a Hibernate model, using MOXy JAXB. Trying to do this, I have run into a ...

3. Unable to use lazy loading when using JAXB generated classes    forum.hibernate.org

Hi, I am trying to use JAXB objects instead of normal POJOs. I am not able to use lazy-loading for a one-to-many association because JAXB invokes the getter method of collections from the setter method which makes Hibernate think that I have invoked the getter method manually and it loads all the collections There is a one-to-many relationship between CalendarTemplate and ...