본문 바로가기
유용한 사이트 및 정보

Spring JPA 에서 Foreign Key 걸린 컬럼 삭제시 - orphanRemoval = true

by pyogowoon 2023. 2. 7.
@OneToMany(mappedBy = "image", orphanRemoval = true)
private List<Comment> comments;

 

foreign key 걸린 comment 들을 자동으로 삭제해준다.

 총 댓글 5개가 삭제되었다.

댓글