«mappedby» 태그된 질문

6
양방향 JPA OneToMany / ManyToOne 연관에서 "연결의 반대면"은 무엇입니까?
@OneToManyJPA 주석 참조 의 예제 섹션에서 : 예제 1-59 @OneToMany-제네릭이있는 고객 클래스 @Entity public class Customer implements Serializable { ... @OneToMany(cascade=ALL, mappedBy="customer") public Set<Order> getOrders() { return orders; } ... } 예제 1-60 @ManyToOne-제네릭이있는 주문 클래스 @Entity public class Order implements Serializable { ... @ManyToOne @JoinColumn(name="CUST_ID", nullable=false) public Customer getCustomer() …
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.