post9:Hibernate Component Mapping Tutorial Learn how to do - TopicsExpress



          

post9:Hibernate Component Mapping Tutorial Learn how to do component mapping using hibernate. In this example you will learn how to map components using Hibernate. Consider the following relationship between Student and Address entity. According to the relationship each student should have a unique address. Since the Student and Address entities are strongly related (composition relation), it is better to store them in a single table. The relational model is shown below. Student.hbm.xml is used to create the STUDENT table. This class contains student details. The component element is used to map all the Address entity fields to the STUDENT table. In Hibernate terms the Address entity is called the component and it cannot have its own primary key, it uses the primary key of the enclosing Student entity. Now create the hibernate configuration file. 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. You will still have a Student and Address class seperately but they will be mapped to only one table. package com.tutorials4u.student; // Generated Sep 3, 2009 6:57:20 PM by Hibernate Tools 3.2.4.GA /** * This class contains student details. */ public class Student implements java.io.Serializable { private long studentId; private String studentName; private Address studentAddress; public Student() { } public Student(String studentName) { this.studentName = studentName; } public Student(String studentName, Address studentAddress) { this.studentName = studentName; this.studentAddress = studentAddress; } 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 Address getStudentAddress() { return this.studentAddress; } public void setStudentAddress(Address studentAddress) { this.studentAddress = studentAddress; } } package com.tutorials4u.student; // Generated Sep 3, 2009 6:57:20 PM by Hibernate Tools 3.2.4.GA /** * This class contains student details. */ public class Address implements java.io.Serializable { private String street; private String city; private String state; private String zipcode; public Address() { } public Address(String street, String city, String state, String zipcode) { this.street = street; this.city = city; this.state = state; this.zipcode = zipcode; } public String getStreet() { return this.street; } public void setStreet(String street) { this.street = street; } public String getCity() { return this.city; } public void setCity(String city) { this.city = city; } public String getState() { return this.state; } public void setState(String state) { this.state = state; } public String getZipcode() { return this.zipcode; } public void setZipcode(String zipcode) { this.zipcode = zipcode; } } Create the Main class to run the example. package com.tutorials4u.student; 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(); Address address = new Address("OMR Road", "Chennai", "TN", "600097"); Student student = new Student("Eswar", address); session.save(student); transactionmit(); } catch (HibernateException e) { transaction.rollback(); e.printStackTrace(); } finally { session.close(); } } } On executing the Main class you will see the following output. Each student has one address and the values are stored in the same STUDENT table. hunk-->java
Posted on: Wed, 14 Aug 2013 17:46:48 +0000

Trending Topics



Recently Viewed Topics




© 2015