When you query the database, have a boolean value available - something like "loadEntity"
So after your query, you go:
Code:
if( loadEntity ) Hibernate.initialize( myParent.getEntities() );
return myParent;
This will load the collection before the session is up. This way you only load the children if you want to in your dao/service layer. If every part of your app needs those entities to be loaded, then you don't need the parameter.
Also, you can use fetch join in your query string, which is pretty fast and doesn't hamper performance all that much. It avoids multiple calls to the database.
It's written like this:
Code:
from MyParent parent fetch join parent.getEntities where ....
I hope that helps.