タグ付けされた質問 「bag」

15
Hibernateが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 is null. private List<Child> children; } Child.java @Entity public Child { @Id @GeneratedValue(strategy=GenerationType.IDENTITY) private Long id; …
471 java  hibernate  jpa  one-to-many  bag 
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.