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() …