Here's what I try to do:

  1. Class 'Book' holds a List of Class 'Chapter'
  2. Create a Book with a couple of Chapters
  3. Save the Book to the DB using JPA
  4. Fetch the Book from the DB, including its Chapters

When I fetch the Book (using find or 'shallow' query), the list of Chapters is an empty list. I see the Chapters are populated into the DB under the Chapter table and I can see the relationships between the Book and its Chapters are generated.

Now, what do I need to do in order to fetch the Book with all its Chapters and create a 'deep' Book entity? Do I need to build join queries or is there a simpler find method that leverages the JPA annotations and handles this for me?

Thanks!

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.