cascade 엔티티를 영속화할 때 연관된 엔티티도 함께 영속화하는 기능 예) 게시글과 게시글 좋아요의 관계 public class Board { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private Long id; @OneToMany(mappedBy = "board", cascade = CascadeType.ALL, orphanRemoval = true) private final List boardLikeList = new ArrayList(); .. 생략 } public class BoardLike { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private Long id; @Many..