15
최대 절전 모드에서 MultipleBagFetchException이 발생 함-여러 백을 동시에 가져올 수 없음
Hibernate는 SessionFactory 생성 동안이 예외를 던진다 : org.hibernate.loader.MultipleBagFetchException : 여러 백을 동시에 가져올 수 없음 이것은 내 테스트 사례입니다. 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 child …
471
java
hibernate
jpa
one-to-many
bag