15
Hibernate genera MultipleBagFetchException - non è possibile recuperare contemporaneamente più sacchi
Hibernate genera questa eccezione durante la creazione di SessionFactory: org.hibernate.loader.MultipleBagFetchException: impossibile recuperare contemporaneamente più sacchetti Questo è il mio caso di prova: Parent.java @Entity public Parent { @Id @GeneratedValue(strategy=GenerationType.IDENTITY) private Long id; @OneToMany(mappedBy="parent", fetch=FetchType.EAGER) // @IndexColumn(name="INDEX_COL") if I had this the problem solve but I retrieve more children than I …
471
java
hibernate
jpa
one-to-many
bag