JPA一对多映射表示例.pdf

  1. 1、本文档共6页,可阅读全部内容。
  2. 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
JPA一对多映射表示例

JPA ⼀对多映射表⽰例 JPA教程 - JPA⼀对多映射表⽰例 以下代码显⽰如何使⽤连接表来链接⼀对多映射。 它使⽤ @JoinTable 注释来设置连接表。 @OneToMany @JoinTable(name = PERSON_DEPT, joinColumns = @JoinColumn(name = p ivate SetPe son pe sons = new HashSetPe son(); 例⼦ 下⾯的代码来⾃Department .j ava 。 package mon; impo t java.util.HashSet; impo t java.util.Set; impo t javax .pe sistence.CascadeType; impo t javax .pe sistence.Entity; impo t javax .pe sistence.Gene atedValue; impo t javax .pe sistence.Gene ationType; impo t javax .pe sistence.Id; impo t javax .pe sistence.JoinColumn; impo t javax .pe sistence.JoinTable; impo t javax .pe sistence.OneToMany; @Entity public class Depa tment { @Id @Gene atedValue(st ategy=Gene ationType.IDENTITY) p ivate long id; p ivate St ing name; @OneToMany @JoinTable(name = PERSON_DEPT, joinColumns = @JoinColumn(name p ivate SetPe son pe sons = new HashSetPe son(); public SetPe son getPe sons() { etu n pe sons; } public void setPe sons(SetPe son pe sons) { this.pe sons = pe sons; } public long getId() { etu n id; } public void setId(long id) { this.id = id; } public St ing getName() { etu n name; } public void setName(St ing name) { = name; } @Ove ide public St ing toSt ing() { etu n Depa tment [id= + id + , name= + name + , pe sons= + ]; } } 下⾯的代码来⾃Person .j ava 。 package mon; impo t javax .pe sistence.Entity; impo t javax .pe sistence.Gene atedValue; impo t javax .pe sistence.Gene ationType; impo t javax .pe sistence.Id; impo t javax .pe sistence.ManyToOne; impo t javax .pe sistence.CascadeType; @Entity public class Pe son { @Id @Gene atedValue(st ategy=Gene ationType.IDENTITY) p ivate long id; p ivate St ing name; @ManyToOne (cascade=CascadeType.ALL) p ivate Depa tment depa tment; public Pe son() {} public Pe son(St ing name) { = name; } public Depa tment getDepa tme

您可能关注的文档

文档评论(0)

liangyuehong + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档