nest « Load « JPA Q&A





1. HQL / Nested Eager Loading    stackoverflow.com

I am wondering what the best way is to load nested values for lazy loaded objects. I'm providing an example to help explain this better.

public class A{
    ...

2. With JPA how can I force loading of nested lazy collections?    coderanch.com

(I also posted this on a jboss jpa forum and haven't received a response yet, so trying here as well...) I'm new to JPA (and Hibernate for that matter. Come from iBATIS background.) Take a case where you have a Company object which contains a List of Employees, and each Employee object has List of Address objects and List of Preferences ...

3. Urgent : Hibernate and lazy loading and nested tags    forum.hibernate.org

Newbie Joined: Wed Jan 10, 2007 8:47 pm Posts: 1 Hi All, I got this stragnge problem: I have a membrs table , some of those members which are masters. it means they could have other members attached to them , so for that I have a column for each meber row that designate the type of each member , is ...

4. force loading of nested lazy collections    forum.hibernate.org

Hi, The scenario is as follows Company object which contains a List of Employees, and each Employee object has List of Address objects. I have lazy loading enabled for all the collections since I dont want to load the entire object tree to be loaded all the time. Now my concern is, when I need the collections including the nested one ...