lazy « Field « JPA Q&A





2. Lazy/Grouped field intialization?    forum.hibernate.org

I was looking for ways to retrieve the same objects in different ways. Sort of like jboss grouping of fields. Say you group the fields and if one of the fields is accessesd all the values of the the fields in the group are retrieved. I would probably correct if I say lazy fields. Is there a way to configure hibernate ...

3. Lazy Field Interception    forum.hibernate.org

What is the best way to intercept calls to initialise lazy fields? The classes org.hibernate.intercept.FieldInterceptor and org.hibernate.intercept.LazyInitializer sound interesting but I'm not sure how to provide one of these - do I set some config or set some property on an object? The background is that I am writing a swing app, utilising spring. I want to intercept a call to ...

4. Switch off lazy on certain fields of lazy class...    forum.hibernate.org

Is it possible to switch off lazy loading for certain fields in a lazily loaded class? That is, certain fields other than the primary keys are fetched upfront, and touching those properties doesnt cause the remainder of the object to be loaded. For example, lets say I have a very large contact management database in which contacts are constantly being added ...