在我的模型类中,如果我添加注释
@OneToOne
@JoinColumn(....
public AnotherModel getAnotherModel(){
}
上面的代码总是很渴望获取classA与AnotherModel类的连接。如果我只想返回classA而没有AnotherModel类。我应该如何放置注释?因为仅在某些情况下,我才需要使用AnotherModel加入classA。我想在DAO标准中执行此操作,而不是在Model中进行映射。
最佳答案
您可以定义要延迟获取的关联,如果它不是可选的,即不能为空。
在这里看看:http://community.jboss.org/wiki/SomeExplanationsOnLazyLoadingone-to-one
关于java - hibernate 手动连接怎么办?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7092389/