«many-to-one» 태그된 질문

6
@ManyToOne JPA 연관에 대한 CascadeType.ALL의 의미는 무엇입니까
나는 @ManyToOne관계 의 맥락에서 계단식의 의미를 잘못 이해했다고 생각 합니다. 경우: public class User { @OneToMany(fetch = FetchType.EAGER) protected Set<Address> userAddresses; } public class Address { @ManyToOne(fetch = FetchType.LAZY, cascade = CascadeType.ALL) protected User addressOwner; } 의 의미는 무엇입니까 cascade = CascadeType.ALL? 예를 들어 데이터베이스에서 특정 주소를 삭제하면 cascade = …

6
JPA : 단방향 다 대일 및 계단식 삭제
다음과 같은 단방향 @ManyToOne 관계 가 있다고 가정 합니다. @Entity public class Parent implements Serializable { @Id @GeneratedValue private long id; } @Entity public class Child implements Serializable { @Id @GeneratedValue private long id; @ManyToOne @JoinColumn private Parent parent; } 나는 부모 P와 자녀가있는 경우 C 1 ... C N …
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.