标签: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;
}
标签:map maps str join element embed integer jpa private
原文地址:http://www.cnblogs.com/mkxzy/p/7546153.html