`

Hibernate继承映射-继承关系中每个类均映射为一个数据库表

阅读更多

[标题]:[原]Hibernate继承映射-继承关系中每个类均映射为一个数据库表
[时间]:2009-6-21
[摘要]:继承关系中每个类均映射为一个数据库表优点:此时,与面向对象的概念是一致的,这种映射实现策略的最大好处就是关系模型完全标准化,关系模型和 领域模型完全一致,易于修改基类和增加新的子类。缺点:数据库中存在大量的表,为细粒度级的数据模型,访问数据时将存在大量的关联表的操作,效率较低。
[关键字]:Hibernate,ORM,关联,继承,持久化,映射,Abstract
[环境]:MyEclipse7,Hibernate3.2,MySQL5.1
[作者]:Winty (wintys@gmail.com) http://www.blogjava.net/wintys

[正文]:
    继承关系中每个类均映射为一个数据库表。
优点:
    此时,与面向对象的概念是一致的,这种映射实现策略的最大好处就是关系模型完全标准化,关系模型和领域模型完全一致,易于修改基类和增加新的子类。

缺点:
    数据库中存在大量的表,为细粒度级的数据模型,访问数据时将存在大量的关联表的操作,效率较低。

    
    例:学校管理系统中的实体关系:



 
    【图:department.jpg】

1、概述
a.实体类
    与allinone包中的实体类相同。

b.数据库表
    继承关系中每个类均映射为一个数据库表。

c.配置文件
ThePerson.hbm.xml:
......
<joined-subclass name="wintys.hibernate.inheritance.allinone.Student" table="theStudent">
    <key column="id"/>
    <property name="studentMajor" />
</joined-subclass>
<joined-subclass name="wintys.hibernate.inheritance.allinone.Teacher" table="theTeacher">
    <key column="id" />
    <property name="teacherSalary" column="teacherSalary" type="float"/>
</joined-subclass>  
......


2、实体类:
Department、Person、Student、Teacher直接import wintys.hibernate.inheritance.concrete包。


3、数据库表:



 
【图:separate_db.jpg】

db.sql:

-- Author:Winty (wintys@gmail.com)
-- Date:2009-06-20
-- http://www.blogjava.net/wintys

USE db;

-- Department
CREATE TABLE mydepartment(
    id      INT(4) NOT NULL,
    name    VARCHAR(100),
    descs  VARCHAR(100),
    PRIMARY KEY(id)
);

-- Person
CREATE TABLE thePerson(
    id              INT(4) NOT NULL,
    name            VARCHAR(100),
    dept            INT(4), -- 与Department关联
    PRIMARY KEY(id),
    CONSTRAINT FK_dept_tp FOREIGN KEY(dept) REFERENCES mydepartment(id)
);

-- Student
CREATE TABLE theStudent(
    id    INT(4) NOT NULL,
    studentMajor    VARCHAR(100),
    PRIMARY KEY(id)
);

-- Teacher
CREATE TABLE theTeacher(
    id    INT(4) NOT NULL,
    teacherSalary   FLOAT(7,2),
    PRIMARY KEY(id)    
);


4、映射文件:



 
【图:separate_mapping.jpg】


ThePerson.hbm.xml:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
<!--
    Mapping file autogenerated by MyEclipse Persistence Tools
-->

<hibernate-mapping>
    <class name="wintys.hibernate.inheritance.allinone.Person" table="thePerson" catalog="db">
        <id name="id" type="int">
            <column name="id" not-null="true"/>
            <generator class="increment" />
        </id>
        <property name="name" />     
        <many-to-one name="department"
                    unique="true"
                    column="dept"
                    class="wintys.hibernate.inheritance.allinone.Department"/>
 
        <joined-subclass name="wintys.hibernate.inheritance.allinone.Student" table="theStudent">
            <key column="id"/>
            <property name="studentMajor" />
        </joined-subclass>
        <joined-subclass name="wintys.hibernate.inheritance.allinone.Teacher" table="theTeacher">
            <key column="id" />
            <property name="teacherSalary" column="teacherSalary" type="float"/>
        </joined-subclass>     
    </class>
</hibernate-mapping>



hibernate.cfg.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">

<!-- Generated by MyEclipse Hibernate Tools.                   -->
<hibernate-configuration>

<session-factory>
    <property name="connection.username">root</property>
    <property name="connection.url">
        jdbc:mysql://localhost:3306/db?useUnicode=true&amp;characterEncoding=utf-8
    </property>
    <property name="dialect">
        org.hibernate.dialect.MySQLDialect
    </property>
    <property name="myeclipse.connection.profile">MySQLDriver</property>
    <property name="connection.password">root</property>
    <property name="connection.driver_class">
        com.mysql.jdbc.Driver
    </property>
    <property name="show_sql">true</property>
    <mapping
        resource="wintys/hibernate/inheritance/separate/ThePerson.hbm.xml" />
    <mapping
        resource="wintys/hibernate/inheritance/allinone/Department.hbm.xml" />

</session-factory>

</hibernate-configuration>



4、使用测试:
DAOBean.java:

package wintys.hibernate.inheritance.separate;

import wintys.hibernate.inheritance.allinone.Department;
import wintys.hibernate.inheritance.allinone.Person;
import wintys.hibernate.inheritance.allinone.Student;
import wintys.hibernate.inheritance.allinone.Teacher;
import wintys.hibernate.inheritance.concrete.DAO;
import wintys.hibernate.inheritance.concrete.HibernateUtil;

import java.util.List;
import org.hibernate.HibernateException;
import org.hibernate.Query;
import org.hibernate.Session;
import org.hibernate.Transaction;

/**
 *
 * @version 2009-06-20
 * @author Winty (wintys@gmail.com)
 *
 */
public class DAOBean implements DAO {

    @Override
    public void insert() {
        Transaction tc = null;
        try{
            Department dept = new Department("college of math" , "the top 3 college");
            Person p1,p2;
            p1 = new Student("Sam" , "Math");
            p1.setDepartment(dept);
            p2 = new Teacher("Martin" , new Float(15000f));
            p2.setDepartment(dept);
            
            Session session = HibernateUtil.getSession();
            tc = session.beginTransaction();
                        
            session.save(dept);
            //多态保存
            session.save(p1);
            session.save(p2);
        
            tc.commit();
        }catch(HibernateException e){
            try{
                if(tc != null)
                    tc.rollback();
            }catch(Exception ex){
                System.err.println(ex.getMessage());
            }
            System.err.println(e.getMessage());
        }finally{
            HibernateUtil.closeSession();            
        }    
    }

    @SuppressWarnings("unchecked")
    @Override
    public <T> List<T> select(String hql) {
        List<T> items = null;
        Transaction tc = null;
        try{
            Session session = HibernateUtil.getSession();
            tc = session.beginTransaction();
                        
            Query query = session.createQuery(hql);
            items = query.list();
            
            tc.commit();
        }catch(HibernateException e){
            try{
                if(tc != null){
                    tc.rollback();
                    items = null;
                }
            }catch(Exception ex){
                System.err.println(ex.getMessage());
            }
            System.err.println(e.getMessage());
        }finally{
            //HibernateUtil.closeSession();            
        }
        
        return items;
    }

}



Test.java:

package wintys.hibernate.inheritance.separate;

import java.util.Iterator;
import java.util.List;

import wintys.hibernate.inheritance.allinone.Department;
import wintys.hibernate.inheritance.allinone.Person;
import wintys.hibernate.inheritance.allinone.Student;
import wintys.hibernate.inheritance.allinone.Teacher;
import wintys.hibernate.inheritance.concrete.DAO;
import wintys.hibernate.inheritance.concrete.HibernateUtil;

public class Test {

    public static void main(String[] args) {
        String config = "wintys/hibernate/inheritance/separate/hibernate.cfg.xml";
        HibernateUtil.setConfigFile(config);
        
        DAO dao = new DAOBean();
        dao.insert();
        //支持多态查询
        List<Person> ps = dao.select("from Person");
        System.out.println(printStudentOrTeacher(ps));
        
        //List<Student> students = dao.select("from Student");
        //System.out.println(printStudentOrTeacher(students));
        
        /*List<Student> teachers = dao.select("from Teacher");
        System.out.println(printStudentOrTeacher(teachers));*/        
    }
    
    public static String printStudentOrTeacher(List<? extends Person> students){
        String str = "";
        Iterator<? extends Person> it = students.iterator();
        while(it.hasNext()){
            Person person = it.next();
            int id = person.getId();
            String name = person.getName();
            Department dept = person.getDepartment();
                
            int deptId = dept.getId();
            String deptName = dept.getName();
            String deptDesc = dept.getDesc();
            
            str += "id:" +id + ""n";
            str += "name:" + name + ""n";
            if(person instanceof Student)
                str += "major:"  + ((Student) person).getStudentMajor() + ""n";
            if(person instanceof Teacher)
                str += "salary:" + ((Teacher) person).getTeacherSalary().toString() + ""n";
            str += "dept:" + ""n";
            str += "  deptId:" + deptId + ""n";
            str += "  deptName:" + deptName + ""n";
            str += "  deptDesc:" + deptDesc + ""n";    
            str += ""n";
        }
        return str;
    }
}



5、运行结果



 
【图:separate_tables.jpg】

控制台显示:

......
Hibernate: select max(id) from mydepartment
Hibernate: select max(id) from thePerson
Hibernate: insert into db.mydepartment (name, descs, id) values (?, ?, ?)
Hibernate: insert into db.thePerson (name, dept, id) values (?, ?, ?)
Hibernate: insert into theStudent (studentMajor, id) values (?, ?)
Hibernate: insert into db.thePerson (name, dept, id) values (?, ?, ?)
Hibernate: insert into theTeacher (teacherSalary, id) values (?, ?)
Hibernate: select person0_.id as id0_, person0_.name as name0_, person0_.dept as dept0_, person0_1_.studentMajor as studentM2_1_, person0_2_.teacherSalary as teacherS2_2_, case when person0_1_.id is not null then 1 when person0_2_.id is not null then 2 when person0_.id is not null then 0 end as clazz_ from db.thePerson person0_ left outer join theStudent person0_1_ on person0_.id=person0_1_.id left outer join theTeacher person0_2_ on person0_.id=person0_2_.id
Hibernate: select department0_.id as id3_0_, department0_.name as name3_0_, department0_.descs as descs3_0_ from db.mydepartment department0_ where department0_.id=?
id:1
name:Sam
major:Math
dept:
  deptId:1
  deptName:college of math
  deptDesc:the top 3 college

id:2
name:Martin
salary:15000.0
dept:
  deptId:1
  deptName:college of math
  deptDesc:the top 3 college



[参考资料]:
《J2EE项目实训--Hibernate框架技术》-杨少波 : 清华大学出版社

原创作品,转载请注明出处。
作者:Winty (wintys@gmail.com)
博客:http://www.blogjava.net/wintys
  • 大小: 33.6 KB
  • 大小: 156.8 KB
  • 大小: 26.4 KB
  • 大小: 65.1 KB
分享到:
评论

相关推荐

    Hibernate继承映射-概述

    1. **单表继承(Single Table Inheritance)**:所有子类的实例数据都存储在同一个数据库表中,通过一个特定的字段(通常是`discriminator`字段)来区分不同子类的对象。 2. **表-per-class(Table per Class ...

    Hibernate继承映射代码

    在Java世界中,Hibernate是一个非常流行的ORM(对象关系映射)框架,它允许开发者用面向对象的方式处理数据库操作。在大型项目中,由于业务需求复杂,我们常常会使用到类的继承来组织代码结构,而Hibernate提供了对...

    Hibernate继承映射的第一种策略:每棵类继承树对应一张表

    Hibernate继承映射是将Java类的继承关系映射到数据库表的一种策略,使得对象模型的复杂性能够平滑地转化为关系数据库模型。本篇将详细介绍Hibernate继承映射的第一种策略——每棵类继承树对应一张表,即单一表继承...

    hibernate映射继承关系(每个类都对应一张表)

    总结起来,"每个类都对应一张表"的继承映射策略在Hibernate中是一种直接且易于理解的方法,适合那些每个类都有独特属性的情况。然而,它可能不适合所有场景,特别是当子类众多或者需要减少数据冗余时。在实际应用中...

    用Hibernate映射继承关系

    在Hibernate中映射继承关系时,一种常见的策略是将继承关系树的每个具体类映射到单独的数据库表中。这种方法称为**表/类映射**(Table/Class Mapping),是最直观且简单的映射方式。它不考虑抽象类或继承关系,而是...

    Hibernate继承映射二:每个子类一张表

    总结来说,“每个子类一张表”的继承映射策略是Hibernate提供的一种处理继承关系的方法,它将类的继承结构映射到数据库的多个表中。这种策略适合于子类具有大量特有属性的情况,但需要权衡可能带来的数据库设计复杂...

    Hibernate继承映射一:每个类分层结构一张表

    本篇文章主要探讨的是Hibernate的继承映射策略,特别是“每个类分层结构一张表”(Table per Concrete Class)的方式。这种映射策略是Hibernate提供的多种继承映射方案之一,适用于处理复杂的对象模型。 首先,我们...

    hibernate继承映射.rar

    Hibernate继承映射是将Java中的继承关系映射到数据库的关系模型中。在Java中,一个基类可以有多个子类,而在数据库中,这些子类可以共享一张表或者各自拥有独立的表,这取决于我们选择的继承策略。Hibernate提供了四...

    Hibernate继承映射的第一种策略:每个具体类一张表

    本篇文章将详细探讨Hibernate继承映射的策略,特别是“每个具体类一张表”(Table Per Concrete Class)的映射方式。 在面向对象编程中,继承是常见的代码复用手段,但在关系型数据库中,这种概念并不直接对应。...

    Hibernate继承映射的第一种策略:每个类对应一张表

    本文将详细探讨“Hibernate继承映射的第一种策略:每个类对应一张表”的概念、实现方式以及其优缺点。 首先,我们需要理解Hibernate继承映射的基本策略。在面向对象编程中,类继承是常见的代码复用手段,但在数据库...

    Hibernate继承关系映射.pdf

    隐式继承映射也称为“表/子类”映射策略,它为继承层次中的每个子类创建一个独立的表,并在每个子类表中重复父类的属性。这种方式下,父类并没有对应的表,而是由子类表来间接表示。 #### 示例代码 ```xml ...

    Hibernate ORM - 继承关联关系之union-subclass

    本文将深入探讨Hibernate ORM中的一个特定概念——继承关联关系的“union-subclass”策略。这个策略涉及到如何在面向对象的设计中处理类的继承关系,并将其映射到数据库中。 首先,我们来理解继承关联关系。在面向...

    hibernate的继承映射关系

    在ORM(Object-Relational Mapping)框架如Hibernate中,如何优雅地将这些继承关系映射到关系型数据库中,成为了一个重要的议题。本文将深入探讨Hibernate如何处理继承多态映射关系,主要通过三种不同的策略来实现这一...

    14 继承(一)(整个继承树映射到一张表)

    每个子类在数据库表中增加一个表示类类型的字段,例如`discriminator_column`。当查询时,Hibernate根据这个字段值决定返回哪个类的对象。 2. **表-per-hierarchy(Table per Hierarchy,TPH)**: TPH是STI的另一种...

    Hibernate教程17_继承映射

    例如,假设我们有一个基类`Animal`,以及两个子类`Dog`和`Cat`,在数据库表中,每个记录都会包含一个表示类类型的discriminator值。 以下是单表继承的基本配置步骤: 1. **配置映射文件**:在Hibernate的XML映射...

    Hibernate继承映射(annotation)

    在Java对象关系映射(ORM)框架中,Hibernate是一个非常重要的工具,它允许开发人员将Java类映射到数据库表,从而简化了数据库操作。本主题主要探讨的是Hibernate中的继承映射,特别是使用注解的方式来实现这一功能...

Global site tag (gtag.js) - Google Analytics