15
Hazırda Beklet çokluBagFetchException atıyor - aynı anda birden çok torba getirilemiyor
Hazırda Beklet, SessionFactory oluşturma sırasında bu özel durumu atar: org.hibernate.loader.MultipleBagFetchException: aynı anda birden çok torba getirilemiyor Bu benim test durumum: 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 have, one …
471
java
hibernate
jpa
one-to-many
bag