OneToMany関係として親と子として2つのエンティティがあります
@Entity
public class Parent {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
private Integer id;
private String name;
@OneToMany(mappedBy = "parent", fetch = FetchType.LAZY)
@IndexColumn(name = "index", base = 1)
@Cascade(org.hibernate.annotations.CascadeType.ALL)
@LazyCollection(LazyCollectionOption.EXTRA)
private List<Child> childs = new ArrayList<Child>();
// getter and setter
}
では、ここで@LazyCollection(LazyCollectionOption.EXTRA)の使用とは何ですか?子リストを使用した操作のように、いつ画像に表示されますか?