6
Cái gì là mặt trái của hiệp hội, trong một hiệp hội hai chiều JPA OneToMany / ManyToOne là gì?
Trong phần ví dụ của @OneToManytài liệu tham khảo chú thích JPA : Ví dụ 1-59 @OneToMany - Lớp khách hàng có Generics @Entity public class Customer implements Serializable { ... @OneToMany(cascade=ALL, mappedBy="customer") public Set<Order> getOrders() { return orders; } ... } Ví dụ 1-60 @ManyToOne - Lớp đặt hàng …