I have a Lazy collection that I want to initialize at will in my service/controller. At this moment I can do:
Hibernate.initialize( myEntity.getListOfThings() );
This command is hibernate dependent and does not make the implementation of JPA transparent. Is there a JPA elegant way of doing this?