Hibernate throws this exception during SessionFactory creation:
org.hibernate.loader.MultipleBagFetchException: cannot simultaneously fetch multiple b
Simply change from List type to Set type.
List
Set
But remind that you won't eliminate the underlaying Cartesian Product as described by Vlad Mihalcea in his answer!