在Play框架中使用ElementCollection时出现LazyInitializationException

chu*_*uuk 5 java hibernate jpa playframework

我在我的应用程序模型集中有一个User实体,定义如下:

public class User extends Model {

    private String name;

    private byte[] sk;

    @Column(columnDefinition = "BINARY(272)")
    private byte[] pk;

    private int port;

    @OneToOne
    public Profile profile;

    @ElementCollection
    public List<String> friends;

    @ElementCollection
        public List<String> mirrors;
...
}
Run Code Online (Sandbox Code Playgroud)

在我的应用程序的不同部分(控制器类)中的方法中,我正在检索并尝试修改镜像列表,如下所示:

    User u = User.connect(username);
    int port = ProfileFinder.getLocation(username, mirror);
    u.mirrors.remove(mirror);
    u.save();
Run Code Online (Sandbox Code Playgroud)

这是一个错误,说明:

LazyInitializationException occured : failed to lazily initialize a collection of role: models.User.mirrors, no session or session was closed
Run Code Online (Sandbox Code Playgroud)

我怀疑这是由于我误解了@ElementCollection标签的某些元素,但任何人都可以澄清我如何纠正这个问题?

谢谢.

JB *_*zet 8

默认情况下,XxxToMany关联和元素集合是延迟加载的.

这意味着只有在需要时,才会在调用其中一个集合方法时从数据库加载集合元素.但是,当然,实体需要附加到其会话中才能实现.如果会话已关闭,则会引发您获得的异常.

您可以通过设置注释的fetch属性来急切加载,也可以在返回之前使用在事务中初始化集合的查询或服务.请注意,如果您急切地加载它,即使您不需要收集元素,它也总是会被急切地加载.