
연관관계 컬랙션 타입 관리
·
트러블슈팅
에러A collection with cascade="all-delete-orphan" was no longer referenced by the owning entity instance (삭제를 하려고 했는데 더이상 소유엔티티에서 참조를 안한다)양방향 연관관계 설정에서 컬랙션 객체를 바로 교체를 하는과정에 에러가 났다. @OneToMany(mappedBy = "cardSection", cascade = CascadeType.ALL, orphanRemoval = true) private List cardSectionControlPoints; public void update(List controlPints) { this.cardSectionControlPoints = controlPints; }cascd..