SyntaxFix
Write A Post
Hire A Developer
Questions
When you have too complex objects with saveral collection could not be good idea to have all of them with EAGER fetchType, better use LAZY and when you really need to load the collections use: Hibernate.initialize(parent.child) to fetch the data.
Hibernate.initialize(parent.child)