関連するエンティティを持つエンティティ親と関係を持つ子 (nullable) がある@OneToMany(fetch = FetchType.LAZY)
とします。
私のアクション Bean では、次のコードは子エンティティを初期化しますか?
boolean 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.
ますが、nullチェックが操作として分類されているかどうかはわかりませんでした
ありがとう