JPA系列九:映射關聯關係-雙向多對多

1、創建實體類Category @Table(name="JPA_CATEGORIES") @Entity public class Category { private Integer id; private String categoryName; private Set<Item> items = new HashSet<>(); @GeneratedValue @Id
相關文章
相關標籤/搜索