假设我有一个实体 Parent 与一个相关实体 Child(可为空)与一个@OneToMany(fetch = FetchType.LAZY)
关系
在我的操作 bean 中,以下代码会初始化子实体吗?
布尔 hasChild = false;
if(parent.getChild()!=null){
hasChild = true;
}
我在文档中看到它说Lazy collection fetching: a collection is fetched when the application invokes an operation upon that collection. This is the default for collections.
但不确定是否将空检查归类为操作
谢谢