15
O Hibernate lança MultipleBagFetchException - não pode buscar simultaneamente vários pacotes
O Hibernate lança essa exceção durante a criação do SessionFactory: org.hibernate.loader.MultipleBagFetchException: não é possível buscar simultaneamente vários pacotes Este é o meu caso de teste: 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 …
471
java
hibernate
jpa
one-to-many
bag