我使用的是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<>();