`

Hibernate注解方式配置联合主键的三种方式

    博客分类:
  • java
阅读更多
Hibernate Annotation 联合主键有三种写法 :

第一种:

Jlee01.java代码:

Java代码 
package com.jlee03.compositeId;

import java.io.Serializable;

import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table;

/**
 * @author JLee
 * @since 2011-2-10
 */
@Entity
@Table(name="JLEE01")
public class Jlee01 implements Serializable{

	private static final long serialVersionUID = 3524215936351012384L;
	private String address ;
	private int age ;
	private String email ;
	private String phone ;

	JleeKey01 jleeKey = new JleeKey01();
	
	/**
	 * @return the jleeKey
	 */
	@Id
	public JleeKey01 getJleeKey() {
		return jleeKey;
	}
	/**
	 * @param jleeKey the jleeKey to set
	 */
	public void setJleeKey(JleeKey01 jleeKey) {
		this.jleeKey = jleeKey;
	}
	/**
	 * @return the phone
	 */
	@Column(name="phone" , length=20)
	public String getPhone() {
		return phone;
	}
	/**
	 * @param phone the phone to set
	 */
	public void setPhone(String phone) {
		this.phone = phone;
	}
	/**
	 * @return the address
	 */
	@Column(name="address" , length=50)
	public String getAddress() {
		return address;
	}
	/**
	 * @param address the address to set
	 */
	public void setAddress(String address) {
		this.address = address;
	}
	/**
	 * @return the age
	 */
	@Column(name="age")
	public int getAge() {
		return age;
	}
	/**
	 * @param age the age to set
	 */
	public void setAge(int age) {
		this.age = age;
	}
	/**
	 * @return the email
	 */
	@Column(name="email" , length=23)
	public String getEmail() {
		return email;
	}
	/**
	 * @param email the email to set
	 */
	public void setEmail(String email) {
		this.email = email;
	}
	
}




JleeKey01.java代码:

Java代码 
package com.jlee03.compositeId;

import java.io.Serializable;

import javax.persistence.Embeddable;

/**
 * @author JLee
 * @since 2011-2-10
 */
@Embeddable
public class JleeKey01  implements Serializable{

	private static final long serialVersionUID = -3304319243957837925L;
	private long id ;
	private String name ;
	/**
	 * @return the id
	 */
        @Column(name="id",length=64)
	public long getId() {
		return id;
	}
	/**
	 * @param id the id to set
	 */
	public void setId(long id) {
		this.id = id;
	}
	/**
	 * @return the name
	 */
        @Column(name="name",length=64)
	public String getName() {
		return name;
	}
	/**
	 * @param name the name to set
	 */
	public void setName(String name) {
		this.name = name;
	}

	@Override
	public boolean equals(Object o) {
		if(o instanceof JleeKey01){
			JleeKey01 key = (JleeKey01)o ;
			if(this.id == key.getId() && this.name.equals(key.getName())){
				return true ;
			}
		}
		return false ;
	}
	
	@Override
	public int hashCode() {
		return this.name.hashCode();
	}
	
}





第二种写法:

Jlee02.java代码:

Java代码 
package com.jlee03.compositeId;

import javax.persistence.Column;
import javax.persistence.EmbeddedId;
import javax.persistence.Entity;
import javax.persistence.Table;

/**
 * @author JLee
 * @since 2011-2-10
 */
@Entity
@Table(name="JLEE02")
public class Jlee02 {

	private String address ;
	private int age ;
	private String email ;
	private String phone ;
	private JleeKey02 jleeKey ;
	
	/**
	 * @return the jleeKey
	 */
	@EmbeddedId
	public JleeKey02 getJleeKey() {
		return jleeKey;
	}
	/**
	 * @param jleeKey the jleeKey to set
	 */
	public void setJleeKey(JleeKey02 jleeKey) {
		this.jleeKey = jleeKey;
	}
	/**
	 * @return the phone
	 */
	@Column(name="phone" , length=20)
	public String getPhone() {
		return phone;
	}
	/**
	 * @param phone the phone to set
	 */
	public void setPhone(String phone) {
		this.phone = phone;
	}
	/**
	 * @return the address
	 */
	@Column(name="address" , length=50)
	public String getAddress() {
		return address;
	}
	/**
	 * @param address the address to set
	 */
	public void setAddress(String address) {
		this.address = address;
	}
	/**
	 * @return the age
	 */
	@Column(name="age")
	public int getAge() {
		return age;
	}
	/**
	 * @param age the age to set
	 */
	public void setAge(int age) {
		this.age = age;
	}
	/**
	 * @return the email
	 */
	@Column(name="email" , length=23)
	public String getEmail() {
		return email;
	}
	/**
	 * @param email the email to set
	 */
	public void setEmail(String email) {
		this.email = email;
	}
	
}
 




JleeKey02.java代码:

Java代码 
package com.jlee03.compositeId;

import java.io.Serializable;


/**
 * @author JLee
 */
public class JleeKey02 implements Serializable{

	private static final long serialVersionUID = -3236523319933461469L;
	private long id ;
	private String name ;
	/**
	 * @return the id
	 */
	public long getId() {
		return id;
	}
	/**
	 * @param id the id to set
	 */
	public void setId(long id) {
		this.id = id;
	}
	/**
	 * @return the name
	 */
	public String getName() {
		return name;
	}
	/**
	 * @param name the name to set
	 */
	public void setName(String name) {
		this.name = name;
	}

	@Override
	public boolean equals(Object o) {
		if(o instanceof JleeKey02){
			JleeKey02 key = (JleeKey02)o ;
			if(this.id == key.getId() && this.name.equals(key.getName())){
				return true ;
			}
		}
		return false ;
	}
	
	@Override
	public int hashCode() {
		return this.name.hashCode();
	}
	
}





第三种写法:

Jlee03.java代码:

Java代码 
package com.jlee03.compositeId;

import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.IdClass;
import javax.persistence.Table;

@Entity
@Table(name="JLEE03")
@IdClass(JleeKey03.class)
public class Jlee03 {

	private long id ;
	private String name ;
	
	/**
	 * @return the id
	 */
	@Id
	public long getId() {
		return id;
	}
	/**
	 * @param id the id to set
	 */
	public void setId(long id) {
		this.id = id;
	}
	/**
	 * @return the name
	 */
	@Id
	public String getName() {
		return name;
	}
	/**
	 * @param name the name to set
	 */
	public void setName(String name) {
		this.name = name;
	}
	private String address ;
	private int age ;
	private String email ;
	private String phone ;
	
	/**
	 * @return the phone
	 */
	@Column(name="phone" , length=20)
	public String getPhone() {
		return phone;
	}
	/**
	 * @param phone the phone to set
	 */
	public void setPhone(String phone) {
		this.phone = phone;
	}
	/**
	 * @return the address
	 */
	@Column(name="address" , length=50)
	public String getAddress() {
		return address;
	}
	/**
	 * @param address the address to set
	 */
	public void setAddress(String address) {
		this.address = address;
	}
	/**
	 * @return the age
	 */
	@Column(name="age")
	public int getAge() {
		return age;
	}
	/**
	 * @param age the age to set
	 */
	public void setAge(int age) {
		this.age = age;
	}
	/**
	 * @return the email
	 */
	@Column(name="email" , length=23)
	public String getEmail() {
		return email;
	}
	/**
	 * @param email the email to set
	 */
	public void setEmail(String email) {
		this.email = email;
	}
	
}





JleeKey03.java代码:

Java代码 
package com.jlee03.compositeId;

import java.io.Serializable;

/**
 * @author JLee
 */
public class JleeKey03 implements Serializable{

	private static final long serialVersionUID = 6060166117433738173L;
	private long id ;
	private String name ;
	/**
	 * @return the id
	 */
	public long getId() {
		return id;
	}
	/**
	 * @param id the id to set
	 */
	public void setId(long id) {
		this.id = id;
	}
	/**
	 * @return the name
	 */
	public String getName() {
		return name;
	}
	/**
	 * @param name the name to set
	 */
	public void setName(String name) {
		this.name = name;
	}

	@Override
	public boolean equals(Object o) {
		if(o instanceof JleeKey03){
			JleeKey03 key = (JleeKey03)o ;
			if(this.id == key.getId() && this.name.equals(key.getName())){
				return true ;
			}
		}
		return false ;
	}
	
	@Override
	public int hashCode() {
		return this.name.hashCode();
	}
	
}





联合主键必须重写 equals 和 hashCode 方法。



hibernate.cfg.xml配置文件:

Xml代码 
<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE hibernate-configuration PUBLIC
        "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
        "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">

<hibernate-configuration>

    <session-factory>

        <!-- Database connection settings -->
        <property name="connection.driver_class">com.mysql.jdbc.Driver</property>
        <property name="connection.url">jdbc:mysql://localhost/hibernate</property>
        <property name="connection.username">root</property>
        <property name="connection.password">root</property>

        <!-- JDBC connection pool (use the built-in) -->
        <property name="connection.pool_size">100</property>

        <!-- SQL dialect -->
        <property name="dialect">org.hibernate.dialect.MySQLDialect</property>

        <!-- Enable Hibernate's automatic session context management -->
        <property name="current_session_context_class">thread</property>

        <!-- Disable the second-level cache  -->
        <property name="cache.provider_class">org.hibernate.cache.NoCacheProvider</property>
		
        <!-- Echo all executed SQL to stdout -->
        <property name="show_sql">true</property>

        <property name="format_sql">true</property>
		
        <!-- Drop and re-create the database schema on startup -->
        <!--<property name="hbm2ddl.auto">create</property>-->
		
		<mapping class="com.jlee03.compositeId.Jlee01"/>
		<mapping class="com.jlee03.compositeId.Jlee02"/>
		<mapping class="com.jlee03.compositeId.Jlee03"/>


    </session-factory>

</hibernate-configuration> 


JleeTest.java代码:

Java代码 
package com.jlee03.compositeId;   
  
import junit.framework.TestCase;   
  
import org.hibernate.Session;   
import org.hibernate.SessionFactory;   
import org.hibernate.cfg.AnnotationConfiguration;   
import org.hibernate.tool.hbm2ddl.SchemaExport;   
  
public class JleeTest extends TestCase {   
  
    public void testJlee(){   
        SessionFactory sf = new AnnotationConfiguration().configure().buildSessionFactory() ;   
        Session session = sf.getCurrentSession() ;   
        session.beginTransaction() ;   
           
        Jlee01 jlee01 = new Jlee01() ;   
        JleeKey01 key01 = new JleeKey01() ;   
        key01.setId(0) ;   
        key01.setName("jlee") ;   
        jlee01.setJleeKey(key01) ;   
        jlee01.setAddress("北京") ;   
        jlee01.setAge(23) ;   
        jlee01.setPhone("21321312321") ;   
           
        Jlee02 jlee02 = new Jlee02() ;   
        JleeKey02 key02 = new JleeKey02() ;   
        key02.setId(0) ;   
        key02.setName("jlee") ;   
        jlee02.setJleeKey(key02) ;   
        jlee02.setAddress("上海") ;   
        jlee02.setAge(32) ;   
        jlee02.setEmail("444823046@qq.com") ;   
           
        Jlee03 jlee03 = new Jlee03() ;   
        jlee03.setId(1) ;   
        jlee03.setName("jlee") ;   
        jlee03.setAddress("这里") ;   
        jlee03.setAge(32) ;   
        jlee03.setEmail("444823046@qq.com") ;   
           
        session.save(jlee01) ;   
        session.save(jlee02) ;   
        session.save(jlee03) ;   
           
        session.getTransaction().commit() ;   
           
    }   
       
    public void testExport(){   
        new SchemaExport(new AnnotationConfiguration().configure()).create(false, true) ;   
    }   
       
} 
分享到:
评论

相关推荐

    JPA注解实现联合主键

    ### JPA注解实现联合主键 在关系型数据库中,单个字段作为主键的情况较为常见,但在某些场景下,我们需要使用多个字段共同作为主键来唯一标识表中的每一条记录,这就是所谓的“联合主键”。而在Java持久化框架...

    Hibernate联合主键的例子

    **正文** 在Java持久化框架Hibernate中,联合主键...联合主键提供了一种灵活的方式来处理那些单一主键无法满足需求的复杂业务场景。在实际项目中,正确理解和使用联合主键对于优化数据模型和保证数据完整性至关重要。

    hibernate复合主键配置和使用

    现在,大多数项目都使用注解配置,但如果你仍然需要处理旧的项目,这里是如何配置的示例: ```xml &lt;hibernate-mapping&gt; &lt;!-- 其他属性 --&gt; &lt;/hibernate-mapping&gt; ``` 四、保存和查询带有复合主键的...

    Hibernate注解jar包

    本主题将深入探讨Hibernate注解的相关知识点。 1. **注解概述**: 注解(Annotations)是Java 5引入的一种元数据,它提供了在源代码中嵌入信息的方式,这些信息可以被编译器或者在运行时的Java虚拟机使用。在...

    hibernate注解详解说明

    在 Hibernate 中,注解是一种简洁且强大的工具,用于替代传统的 XML 配置文件来描述对象模型和数据库之间的映射关系。这篇文档将深入探讨 Hibernate 注解的使用。 ### 第 1 章 创建一个注解项目 在开始使用 ...

    Hibernate教程08_关系映射之联合主键

    在Java的持久化框架Hibernate中,关系映射是将...在处理复杂的数据结构时,联合主键提供了一种灵活的方式,使得实体间的关联更加自然和直观。在开发过程中,理解并熟练运用联合主键可以提高代码的可读性和维护性。

    hibernate注解中英文版

    Hibernate注解是元数据的一种形式,它们允许我们在Java类和属性上直接声明关于如何映射到数据库的信息,避免了XML配置文件的繁琐。通过注解,我们可以指定实体类、属性、关联关系等如何对应到数据库表和字段。 二、...

    Hibernate一对一单向外键关联 (联合主键annotation)

    本篇将详细讲解如何使用Hibernate进行一对一单向外键关联,并且该关联涉及到联合主键的注解配置。 首先,一对一关联可以分为两种类型:单向和双向。在单向一对一关联中,只有一个实体知道另一个实体的存在,而另一...

    hibernate复合主键的实例

    在Java的持久化框架Hibernate中,复合主键(Composite Key)是一种特殊的数据结构,用于处理具有多个字段作为唯一标识的情况。本实例将深入探讨如何在Hibernate中实现复合主键,并提供一个具体的示例来帮助理解。 ...

    Hibernate中对数据库复合主键的支持.pdf

    这种设计方式非常适合于需要联合多个字段才能唯一确定一个实体的场景。 #### 三、数据库设计 在创建具有复合主键的表时,需要在SQL语句中明确指定哪些字段组合构成了主键。文档中的SQL语句展示了如何创建一个包含...

    Hibernate_关联关系映射配置

    五、联合主键(Composite Key) 在某些情况下,实体的主键可能由两个或更多个字段组成。这时,我们需要使用`@EmbeddedId`和`@Embeddable`注解来定义复合主键类和其属性。`@EmbeddedId`用于指定实体的主键类,而`@...

    hibernate各种常用关联关系的基本配置

    本篇文章将深入探讨Hibernate中常见的几种关联关系及其基本配置。 一、一对一(OneToOne)关联 在一对一关联中,一个实体对象只对应数据库中的一个记录。配置方式通常通过`@OneToOne`注解实现,可以设置`mappedBy`...

    hibernate复合主键映射

    总结来说,Hibernate复合主键映射是处理多字段主键的关键技术,它通过`@Embeddable`和`@EmbeddedId`注解以及相应的XML配置,使开发者能够方便地管理和操作具有复合主键的实体。在开发过程中,正确理解和使用这项功能...

    hibernate中文帮助文档

    3. 通过XML覆写元数据:虽然注解是主要的配置方式,但Hibernate也允许通过XML文件来覆盖或补充注解配置,提供了更大的灵活性。 4. Hibernate验证器:Hibernate提供了内置的验证机制,允许开发者通过注解在领域模型...

    Hibernate原理与配置快速入门.rar

    2. 联合主键:使用@Embeddable和@EmbeddedId注解处理复合主键。 3. 关联映射:包括一对一(OneToOne)、一对多(OneToMany)、多对一(ManyToOne)和多对多(ManyToMany)关系。 4. 集合映射:List、Set、Map等集合...

    Hibernate 系列教程 单向一对多

    在Java开发领域,Hibernate是一个非常重要的对象关系映射(ORM)框架,它简化了数据库操作,使得开发者可以使用面向对象的方式来处理数据。本教程聚焦于Hibernate中的单向一对多关联映射,这是一个常见的实体关系...

    Hibernate各种数据库关联annotatian和XML的配置集锦

    对于多对一关系,如果总是成对出现,可以考虑使用联合主键或单向关联。 - 使用二级缓存:通过配置Hibernate的二级缓存,可以减少对数据库的访问,提高系统性能。 - HQL与SQL:使用HQL(Hibernate Query Language)...

    Hibernate面试题专栏 - 最全的Hibernate面试题, Hibernate笔试题, Hibernate问题

    Hibernate是一个用于简化Java数据库编程的开源框架,它提供了一种在Java应用程序中持久化对象的方式,避免了直接编写SQL语句,提高了开发效率。 **1. Hibernate基本概念** - **对象关系映射(ORM)**: ORM是将...

    hibernate 3.6 中文 chm

    3. **对象关系映射**:Hibernate的核心功能在于对象关系映射,它通过注解或XML配置将Java类与数据库表关联,实现对象的持久化。 4. **Session接口**:在Hibernate中,Session是与数据库交互的主要接口,负责保存、...

Global site tag (gtag.js) - Google Analytics