数据库
首页 > 数据库> > Spring Data Mongo MongoDB DBRef延迟初始化

Spring Data Mongo MongoDB DBRef延迟初始化

作者:互联网

我正在使用Spring Spring Data MongoDB.
我的模型是这样的:

@Document(collection = "actors")
public class Actor extends DomainEntity {

private String name;
private String surname;
@DBRef(lazy = true)
private List<Class> classes;

另一个类非常通用,所以我不发布它.
我的问题是当我尝试访问它时,未加载列表“classes”,该属性仍然是某种代理对象.
例:

Actor a = actorRepository.findOne(id);
//At this moment classes are a proxy object because of the lazy

//Now I try to load the reference and nothing works
a.getClasses();
a.getClasses().size();
a.getClases().get(0).getAttr();
for(Class g:a.getClasses()){
        g.getAttr();
    }

我考虑了很多选择,但没办法让它工作……

解决方法:

我正在使用spring-data-mongodb-1.7.0.RELEASE,我能够通过在其声明中初始化延迟加载的集合来解决这个问题,例如:

@DBRef(lazy = true)
private List<Class> classes = new ArrayList<>();

标签:spring,spring-data,lazy-initialization,spring-data-mongodb,dbref
来源: https://codeday.me/bug/20190628/1318400.html