Hibernate關聯關係配置—–基於串連表的雙向多對多配置

來源:互聯網
上載者:User

實體:

package bi.many2many.jointable;import java.util.HashSet;import java.util.Set;public class Student {private int id;private String name;private Set<Teacher> teachers = new HashSet<Teacher>();public Student() {}public Student(int id, String name, Set<Teacher> teachers) {super();this.id = id;this.name = name;this.teachers = teachers;}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 Set<Teacher> getTeachers() {return teachers;}public void setTeachers(Set<Teacher> teachers) {this.teachers = teachers;}}package bi.many2many.jointable;import java.util.HashSet;import java.util.Set;public class Teacher {private int id;private String name;private Set<Student> students = new HashSet<Student>();public Teacher() {}public Teacher(int id, String name, Set<Student> students) {super();this.id = id;this.name = name;this.students = students;}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 Set<Student> getStudents() {return students;}public void setStudents(Set<Student> students) {this.students = students;}}

  

hbm對應檔:

<hibernate-mapping><class name="bi.many2many.jointable.Student"><id name="id" column="sid"><generator class="native" /></id><property name="name" type="string" column="name"></property><set name="teachers" table="studentteacher"><key column="sid"></key><many-to-many class="bi.many2many.jointable.Teacher" column="tid"></many-to-many></set></class></hibernate-mapping><hibernate-mapping><class name="bi.many2many.jointable.Teacher"><id name="id" column="tid"><generator class="native" /></id><property name="name" type="string" column="name"></property><set name="students" table="studentteacher" inverse="true"><key column="tid"></key><many-to-many class="bi.many2many.jointable.Student" column="sid"></many-to-many></set></class></hibernate-mapping>

  

測試檔案:

public class Test {@org.junit.Testpublic void testAdd() {SessionFactory sf = HibernateUtil.getSessionFactory();Session session = sf.getCurrentSession();session.beginTransaction();Teacher t1 = new Teacher();t1.setName("李剛");Teacher t2 = new Teacher();t2.setName("張孝祥");Teacher t3 = new Teacher();t3.setName("馬士兵");Student s1 = new Student();s1.setName("張三");s1.getTeachers().add(t1);s1.getTeachers().add(t2);s1.getTeachers().add(t3);Student s2 = new Student();s2.setName("李四");s2.getTeachers().add(t3);s2.getTeachers().add(t2);session.save(t1);session.save(t2);session.save(t3);session.save(s1);session.save(s2);session.beginTransaction().commit();}}

  

測試結果:

Hibernate: insert into Teacher (name) values (?)Hibernate: insert into Teacher (name) values (?)Hibernate: insert into Teacher (name) values (?)Hibernate: insert into Student (name) values (?)Hibernate: insert into Student (name) values (?)Hibernate: insert into studentteacher (sid, tid) values (?, ?)Hibernate: insert into studentteacher (sid, tid) values (?, ?)Hibernate: insert into studentteacher (sid, tid) values (?, ?)Hibernate: insert into studentteacher (sid, tid) values (?, ?)Hibernate: insert into studentteacher (sid, tid) 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.