Hibernate關聯關係映射—–基於串連表的單向一對一映射

來源:互聯網
上載者:User

實體:

package uni.one2one.jointable;public class Husband {private int id;private String name;private Wife wife;public Husband() {}public Husband(int id, String name, Wife wife) {super();this.id = id;this.name = name;this.wife = wife;}public int getId() {return id;}public void setId(int id) {this.id = id;}public String getName() {return name;}public void setName(String name) {this.name = name;}public Wife getWife() {return wife;}public void setWife(Wife wife) {this.wife = wife;}}package uni.one2one.jointable;public class Wife {private int id;private String name;public Wife() {}public Wife(int id, String name) {super();this.id = id;this.name = name;}public int getId() {return id;}public void setId(int id) {this.id = id;}public String getName() {return name;}public void setName(String name) {this.name = name;}}

  

hbm設定檔:

<hibernate-mapping><class name="uni.one2one.jointable.Husband"><id name="id" column="did"><generator class="native" /></id><property name="name" type="string" column="name"></property><join table="husbandwife"><key column="did"></key><many-to-one name="wife" unique="true" not-null="true" column="wid"></many-to-one></join></class></hibernate-mapping><hibernate-mapping><class name="uni.one2one.jointable.Wife"><id name="id" column="did"><generator class="native" /></id><property name="name" type="string" column="name"></property></class></hibernate-mapping>

  

測試檔案:

public class Test {@org.junit.Testpublic void testAdd() {SessionFactory sf = HibernateUtil.getSessionFactory();Session session = sf.getCurrentSession();session.beginTransaction();Wife wife = new Wife();wife.setName("wife");Husband husband = new Husband();husband.setName("husband");husband.setWife(wife);session.save(wife);session.save(husband);session.beginTransaction().commit();}}

  

測試結果:

Hibernate: insert into Wife (name) values (?)Hibernate: insert into Husband (name) values (?)Hibernate: insert into husbandwife (wid, did) values (?, ?)

  

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.