JPA学习笔记
hanaii
这个作者很懒,什么都没留下…
展开
-
JPA_泛化关系_single table与per table
泛化关系即继承关系。 以Product和BookProduct、ClothProduct为例。 其中BookProduct和ClothProduct继承于Product。、 Product @Getter@Setter@ToString public class Product { private Long id; private String name; } Bo...原创 2018-09-04 14:38:37 · 262 阅读 · 0 评论 -
JPA_组件关系
使用JPA注解完成组件关系映射 以Company与Address为例。其中Address对象为组件对象,Company对象为宿主对象。 Company类 @Getter@Setter @Entity@Table(name = "company") public class Company { @Id @GeneratedValue(strategy = Generati...原创 2018-09-03 22:59:12 · 411 阅读 · 0 评论