15
Hibernate lève MultipleBagFetchException - ne peut pas récupérer simultanément plusieurs sacs
Hibernate lève cette exception lors de la création de SessionFactory: org.hibernate.loader.MultipleBagFetchException: impossible de récupérer simultanément plusieurs sacs Voici mon cas de test: 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