Hibernate在创建SessionFactory时抛出这个异常:

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;

 @ManyToOne
 private Parent parent;

}

这个问题怎么样?我该怎么办?


EDIT

好的,我的问题是,另一个“父”实体是在我的父,我的真实行为是这样的:

Parent.java

@Entity
public Parent {

 @Id
 @GeneratedValue(strategy=GenerationType.IDENTITY)
 private Long id;

 @ManyToOne
 private AnotherParent anotherParent;

 @OneToMany(mappedBy="parent", fetch=FetchType.EAGER)
 private List<Child> children;

}

AnotherParent.java

@Entity
public AnotherParent {

 @Id
 @GeneratedValue(strategy=GenerationType.IDENTITY)
 private Long id;

 @OneToMany(mappedBy="parent", fetch=FetchType.EAGER)
 private List<AnotherChild> anotherChildren;

}

Hibernate不喜欢FetchType有两个集合。EAGER,但这似乎是一个bug,我没有做不寻常的事情…

删除FetchType。来自Parent或AnotherParent的渴望解决了这个问题,但我需要它,所以真正的解决方案是使用@LazyCollection(LazyCollectionOption.FALSE)而不是FetchType(感谢Bozho的解决方案)。


当前回答

好吧,这是我的2美分。我在我的实体中有Fetch Lazy注释,但我也在会话bean中复制了Fetch Lazy,从而导致了多个包问题。因此,我只是删除了SessionBean中的行

标准。createAlias("FIELD", "ALIAS", JoinType.LEFT_OUTER_JOIN);/ /删除

我使用了Hibernate。在list parent = criteria之后,我想检索的列表上的初始化。List被调用。 Hibernate.initialize (parent.getChildList ());

其他回答

好吧,这是我的2美分。我在我的实体中有Fetch Lazy注释,但我也在会话bean中复制了Fetch Lazy,从而导致了多个包问题。因此,我只是删除了SessionBean中的行

标准。createAlias("FIELD", "ALIAS", JoinType.LEFT_OUTER_JOIN);/ /删除

我使用了Hibernate。在list parent = criteria之后,我想检索的列表上的初始化。List被调用。 Hibernate.initialize (parent.getChildList ());

当你有一个太复杂的对象和一个简单的收集不是一个好主意,所有的对象都用EAGER fetchType,最好使用LAZY,当你真的需要加载集合使用:Hibernate.initialize(parent.child)来获取数据。

我通过注释来解决:

@OneToMany(cascade = CascadeType.ALL, fetch = FetchType.LAZY)

在你的代码中添加一个hibernate特有的@Fetch注释:

@OneToMany(mappedBy="parent", fetch=FetchType.EAGER)
@Fetch(value = FetchMode.SUBSELECT)
private List<Child> childs;

这应该可以修复与Hibernate bug HHH-1718相关的问题

对我来说,问题是嵌套了EAGER取回。

一种解决方案是将嵌套字段设置为LAZY,并使用Hibernate.initialize()来加载嵌套字段:

x = session.get(ClassName.class, id);
Hibernate.initialize(x.getNestedField());