码迷,mamicode.com
首页 > 其他好文 > 详细

JPA 派生标识符的两种实现方式

时间:2017-09-19 03:49:41      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:map   maps   str   join   element   embed   integer   jpa   private   

方法一:
@Entity
@IdClass(ModuleId.class)
public class Module {

@Id
private Integer index;

@Id
@ManyToOne
private Page page;

private Integer cols;
}

方法二:
@Entity
public class Element {

@EmbeddedId
private ElementId id;

@ManyToOne
@MapsId("pageId")
@JoinColumn(name = "mypage_id")
private Page page;

private String name;
}

JPA 派生标识符的两种实现方式

标签:map   maps   str   join   element   embed   integer   jpa   private   

原文地址:http://www.cnblogs.com/mkxzy/p/7546153.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!