Hibernate Many-To-Many Mapping Tutorial Learn how to do - TopicsExpress



          

Hibernate Many-To-Many Mapping Tutorial Learn how to do many-to-many mapping using hibernate. In this example you will learn how to map many-to-many relationship using Hibernate. Consider the following relationship between Student and Course entity. According to the relationship a student can enroll in any number of courses and the course can have any number of students. To create this relationship you need to have a STUDENT, COURSE and STUDENT_COURSE table. The relational model is shown below. To create the STUDENT and COURSE tables you need to create the following hibernate mapping files. Student.hbm.xml is used to create the STUDENT and STUDENT_COURSE table. This class contains student details. We use many-to-many element to create the many-to-many relationship between the Student and Course entities. Since a student can enroll in any number of courses we use a collection to hold the values. In this case we use Set. Course.hbm.xml is used to create the COURSE table. This class contains course details. Now create the hibernate configuration file and add all the mapping files. org.hsqldb.jdbcDriver jdbc:hsqldb:hsql://localhost sa 1 org.hibernate.dialect.HSQLDialect true create-drop After creating the configuration file, generate java class files using Hibernate Tools.(To generate code using Hibernate Tools refer this example ) The following classes will be generated. package com.tutorials4u.student; // Generated May 30, 2009 6:48:40 AM by Hibernate Tools 3.2.4.GA import java.util.HashSet; import java.util.Set; /** * This class contains the student details. */ public class Student implements java.io.Serializable { private long studentId; private String studentName; private Set courses = new HashSet(0); public Student() { } public Student(String studentName) { this.studentName = studentName; } public Student(String studentName, Set courses) { this.studentName = studentName; this.courses = courses; } public long getStudentId() { return this.studentId; } public void setStudentId(long studentId) { this.studentId = studentId; } public String getStudentName() { return this.studentName; } public void setStudentName(String studentName) { this.studentName = studentName; } public Set getCourses() { return this.courses; } public void setCourses(Set courses) { this.courses = courses; } } package com.tutorials4u.student; // Generated May 30, 2009 6:48:40 AM by Hibernate Tools 3.2.4.GA /** * This class contains the course details. * */ public class Course implements java.io.Serializable { private long courseId; private String courseName; public Course() { } public Course(String courseName) { this.courseName = courseName; } public long getCourseId() { return this.courseId; } public void setCourseId(long courseId) { this.courseId = courseId; } public String getCourseName() { return this.courseName; } public void setCourseName(String courseName) { this.courseName = courseName; } } Create the Main class to run the example. package com.tutorials4u.student; import java.util.HashSet; import java.util.Set; import org.hibernate.HibernateException; import org.hibernate.Session; import org.hibernate.Transaction; import com.tutorials4u.util.HibernateUtil; public class Main { public static void main(String[] args) { Session session = HibernateUtil.getSessionFactory().openSession(); Transaction transaction = null; try { transaction = session.beginTransaction(); Set courses = new HashSet(); courses.add(new Course("Maths")); courses.add(new Course("Computer Science")); Student student1 = new Student("Eswar", courses); Student student2 = new Student("Joe", courses); session.save(student1); session.save(student2); transactionmit(); } catch (HibernateException e) { transaction.rollback(); e.printStackTrace(); } finally { session.close(); } } } On executing the Main class you will see the following output. hunk--->java The STUDENT table has two records. The COURSE table has two records. The STUDENT_COURSE table has four records to link the student and courses. Each student has enrolled in the same two courses, this illustrates the many-to-many mapping hunk---?java
Posted on: Wed, 14 Aug 2013 17:46:02 +0000

Trending Topics



Recently Viewed Topics




© 2015