Here's what I try to do:
- Class 'Book' holds a List of Class 'Chapter'
- Create a Book with a couple of Chapters
- Save the Book to the DB using JPA
- 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!