Knowledge Walls
J2EE Technologies Tutorial
Hyderabad, Andhra Pradesh, India
How to use multiple primary key entity using Spring Hibernate Framework
6451 Views
Hints 
@Embeddable class can be used for multiple column/fields primary key in Spring and Hibernate framework entity. @EmbeddedId annotation used to mark a field member as multiple primary key column. All members in the @Embeddable object treating as multiple primary key columns. Embeddable class should be implemented with serializable.


Example
@Embeddable
public class StudentPrimaryGroup implements Serializable {
    private String phoneNo;
    private String emailId;


Declared primary id as
@EmbeddedId
private StudentPrimaryGroup studentId;
Output 
Hibernate: drop table if exists STUDENT_INFO
Hibernate: create table STUDENT_INFO (emailId varchar(255) not null, phoneNo varchar(255) not null, STUDENT_NAME varchar(255), primary key (emailId, phoneNo)) ENGINE=InnoDB

Called for; Student:com.knowledgewalls.entity.StudentPrimaryGroup@142c6b7d
Hibernate: insert into STUDENT_INFO (STUDENT_NAME, emailId, phoneNo) values (?, ?, ?)

Project Explorer Preview 
StudentInfo.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
package com.knowledgewalls.entity;
 
import javax.persistence.Column;
import javax.persistence.EmbeddedId;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
 
@Entity(name="STUDENT_INFO")
public class StudentInfo {
    @EmbeddedId
    private StudentPrimaryGroup studentId;
     
    @Column(name="STUDENT_NAME")
    private String StudentName;
 
    public StudentPrimaryGroup getStudentId() {
        return studentId;
    }
    public void setStudentId(StudentPrimaryGroup studentId) {
        this.studentId = studentId;
    }
     
    public String getStudentName() {
        return StudentName;
    }
    public void setStudentName(String studentName) {
        StudentName = studentName;
    }    
}
StudentPrimaryGroup.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.knowledgewalls.entity;
 
import java.io.Serializable;
import javax.persistence.Embeddable;
 
@Embeddable
public class StudentPrimaryGroup implements Serializable {
    private String phoneNo;
    private String emailId;
     
    public String getPhoneNo() {
        return phoneNo;
    }
    public void setPhoneNo(String phoneNo) {
        this.phoneNo = phoneNo;
    }
    public String getEmailId() {
        return emailId;
    }
    public void setEmailId(String emailId) {
        this.emailId = emailId;
    }    
}
StudentInfoDAO.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package com.knowledgewalls.dao;
 
import javax.persistence.EntityManager;
import javax.persistence.PersistenceContext;
 
import org.springframework.stereotype.Repository;
import org.springframework.transaction.annotation.Transactional;
 
import com.knowledgewalls.entity.StudentInfo;
 
@Repository
@Transactional
public class StudentInfoDAO {
     
    @PersistenceContext
    EntityManager em;
     
    public void save(StudentInfo userDetails){
        System.out.println("Called for; Student:"+userDetails.getStudentId());
 
        try {
            em.persist(userDetails);
        }
        catch(Exception e){
            System.out.println("Insertion Failure; Student:"+userDetails.getStudentId());
            e.printStackTrace();
        }
    }
}
StudentInfoController.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
package com.knowledgewalls.controller;
 
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.ResponseBody;
 
import com.knowledgewalls.dao.StudentInfoDAO;
import com.knowledgewalls.entity.StudentInfo;
import com.knowledgewalls.entity.StudentPrimaryGroup;
 
@Controller
public class StudentInfoController {
     
    @Autowired
    StudentInfoDAO studentInfoDAO;
     
    @RequestMapping(value="/addStudent",method=RequestMethod.GET)
    public @ResponseBody String addUsers(){
        {
            StudentInfo studentInfo = new StudentInfo();
                studentInfo.setStudentName("Raj");
                 
                StudentPrimaryGroup spg = new StudentPrimaryGroup();
                    spg.setPhoneNo("9556612345");
                    spg.setEmailId("john@gmail.com");
                     
                studentInfo.setStudentId(spg);
                 
            studentInfoDAO.save(studentInfo);
        }
         
        return "Inserted..";
         
    }
}
Persistence.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
<?xml version="1.0" encoding="UTF-8"?>
<persistence version="2.0" xmlns="http://java.sun.com/xml/ns/persistence"
 
  <persistence-unit name="hibernatePersistenceUnit">
          <properties>
            <property name="hibernate.hbm2ddl.auto" value="create" />
        </properties>
  </persistence-unit>
 
</persistence>
Beans-servlet.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?xml version="1.0" encoding="UTF-8"?>
 
    <context:component-scan base-package="com.knowledgewalls" />
    <mvc:annotation-driven />
    <tx:annotation-driven transaction-manager="transactionManager" />
     
    <bean id="emf" class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean">
        <property name="persistenceXmlLocation" value="classpath*:persistence.xml" />
        <property name="persistenceUnitName" value="hibernatePersistenceUnit" />
        <property name="dataSource" ref="dataSource"/>
        <property name="jpaVendorAdapter" ref="jpaVendorAdapter"/>
    </bean>
     
    <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource">
        <property name="driverClassName" value="com.mysql.jdbc.Driver" />
        <property name="url" value="jdbc:mysql://localhost:3306/test" />
        <property name="username" value="root" />
        <property name="password" value="mysql" />
        <property name="initialSize" value="5" />
        <property name="maxActive" value="10" />
    </bean>
     
    <bean id="jpaVendorAdapter" class="org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter">
        <property name="database" value="MYSQL"></property>
        <property name="showSql" value="true"></property>
        <property name="generateDdl" value="false"></property>
        <property name="databasePlatform" value="org.hibernate.dialect.MySQL5InnoDBDialect"></property>
    </bean>
     
    <bean id="transactionManager" class="org.springframework.orm.jpa.JpaTransactionManager">
         <property name="entityManagerFactory" ref="emf" />
    </bean>
     
    <bean class="org.springframework.http.converter.json.MappingJacksonHttpMessageConverter" />
    <bean class="org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor"/>
    <bean class="org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor"/>
 
</beans>
Web.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="UTF-8"?>
  <display-name>Hibernate007_PrimaryKeyCombination</display-name>
  <welcome-file-list>
    <welcome-file>index.html</welcome-file>
    <welcome-file>index.htm</welcome-file>
    <welcome-file>index.jsp</welcome-file>
    <welcome-file>default.html</welcome-file>
    <welcome-file>default.htm</welcome-file>
    <welcome-file>default.jsp</welcome-file>
  </welcome-file-list>
  
  <servlet>
    <servlet-name>beans</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
  </servlet>
  <servlet-mapping>
    <servlet-name>beans</servlet-name>
    <url-pattern>/</url-pattern>
  </servlet-mapping>
</web-app>
Best Lessons of "Hibernate 3.0 Examples"
Top lessons which are viewed more times.
  Copyright © 2014 Knowledge walls, All rights reserved
KnowledgeWalls
keep your tutorials and learnings with KnowledgeWalls. Don't lose your learnings hereafter. Save and revise it whenever required.
Click here for more details