Hibernate繼承對映多型的詳解

langgufu314發表於2012-06-05

在物件導向的程式領域中,類與類之間是有繼承關係的,例如Java世界中只需要extends關鍵字就可以確定這兩個類的父子關係,但是在關聯式資料庫的世界中,表與表之間沒有任何關鍵字可以明確指明這兩張表的父子關係,表與表是沒有繼承關係這樣的說法的。為了將程式領域中的繼承關係反映到資料中,Hibernate為我們提供了3中方案:

第一種方案:一個子類對應一張表。

第二種方案:使用一張表表示所有繼承體系下的類的屬性的並集。

第三種方案:每個子類使用一張表只儲存它特有的屬性,然後與父類所對應的表以一對一主鍵關聯的方式關聯起來。

現在假設有People、Student、Teacher三個類,父類為People,Student與Teacher為People的父類,程式碼如下:

 

People類:

  1. public class People
  2. {
  3. /*父類所擁有的屬性*/
  4. private String id;
  5. private String name;
  6. private String sex;
  7. private String age;
  8. private Timestamp birthday;
  9. /*get和set方法*/
  10. }

public class People { /*父類所擁有的屬性*/ private String id; private String name; private String sex; private String age; private Timestamp birthday; /*get和set方法*/ }

 

Student類:

  1. public class Student extends People
  2. {
  3. /*學生獨有的屬性*/
  4. private String cardId;//學號
  5. public String getCardId()
  6. {
  7. return cardId;
  8. }
  9. public void setCardId(String cardId)
  10. {
  11. this.cardId = cardId;
  12. }
  13. }

public class Student extends People { /*學生獨有的屬性*/ private String cardId;//學號 public String getCardId() { return cardId; } public void setCardId(String cardId) { this.cardId = cardId; } }

 

Teacher類:

  1. public class Teacher extends People
  2. {
  3. /*Teacher所獨有的屬性*/
  4. private int salary;//工資
  5. public int getSalary()
  6. {
  7. return salary;
  8. }
  9. public void setSalary(int salary)
  10. {
  11. this.salary = salary;
  12. }
  13. }

public class Teacher extends People { /*Teacher所獨有的屬性*/ private int salary;//工資 public int getSalary() { return salary; } public void setSalary(int salary) { this.salary = salary; } }

 

第一種方案:一個子類對應一張表

該方案是使繼承體系中每一個子類都對應資料庫中的一張表。

示意圖如下:

每一個子類對應的資料庫表都包含了父類的資訊,並且包含了自己獨有的屬性。每個子類對應一張表,而且這個表的資訊是完備的,即包含了所有從父類繼承下來的屬性對映的欄位。這種策略是使用<union-subclass>標籤來定義子類的。

 

配置People.hbm.xml檔案:(注意:這裡都寫在了一個People的配置檔案裡,也可以分別寫在三個配置檔案,即Student.hbm.xml、Teacher.hbm.xml裡,以下同樣可以

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
  3. <hibernate-mapping>
  4. <class name="com.suxiaolei.hibernate.pojos.People" abstract="true">
  5. <id name="id" type="string">
  6. <column name="ID"></column>
  7. <generator class="uuid"></generator>
  8. </id>
  9. <property name="name" column="NAME" type="string"></property>
  10. <property name="sex" column="SEX" type="string"></property>
  11. <property name="age" column="AGE" type="string"></property>
  12. <property name="birthday" column="BIRTHDAY" type="timestamp"></property>
  13. <!--
  14. <union-subclass name="com.suxiaolei.hibernate.pojos.Student" table="STUDENT">
  15. <property name="cardId" column="CARDID" type="string"></property>
  16. </union-subclass>
  17. <union-subclass name="com.suxiaolei.hibernate.pojos.Teacher" table="TEACHER">
  18. <property name="salary" column="SALARY" type="integer"></property>
  19. </union-subclass>
  20. -->
  21. </class>
  22. <!-- 可單獨寫在Student.hbm.xml裡 -->
  23. <union-subclass name="com.suxiaolei.hibernate.pojos.Student"
  24. table="STUDENT" extends="com.suxiaolei.hibernate.pojos.People">
  25. <property name="cardId" column="CARDID" type="string"></property>
  26. </union-subclass>
  27. <!-- 可單獨寫在Teacher.hbm.xml裡 -->
  28. <union-subclass name="com.suxiaolei.hibernate.pojos.Teacher"
  29. table="TEACHER" extends="com.suxiaolei.hibernate.pojos.People">
  30. <property name="salary" column="SALARY" type="integer"></property>
  31. </union-subclass>
  32. </hibernate-mapping>

<?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"> <hibernate-mapping> <class name="com.suxiaolei.hibernate.pojos.People" abstract="true"> <id name="id" type="string"> <column name="ID"></column> <generator class="uuid"></generator> </id> <property name="name" column="NAME" type="string"></property> <property name="sex" column="SEX" type="string"></property> <property name="age" column="AGE" type="string"></property> <property name="birthday" column="BIRTHDAY" type="timestamp"></property> <!-- <union-subclass name="com.suxiaolei.hibernate.pojos.Student" table="STUDENT"> <property name="cardId" column="CARDID" type="string"></property> </union-subclass> <union-subclass name="com.suxiaolei.hibernate.pojos.Teacher" table="TEACHER"> <property name="salary" column="SALARY" type="integer"></property> </union-subclass> --> </class> <!-- 可單獨寫在Student.hbm.xml裡 --> <union-subclass name="com.suxiaolei.hibernate.pojos.Student" table="STUDENT" extends="com.suxiaolei.hibernate.pojos.People"> <property name="cardId" column="CARDID" type="string"></property> </union-subclass> <!-- 可單獨寫在Teacher.hbm.xml裡 --> <union-subclass name="com.suxiaolei.hibernate.pojos.Teacher" table="TEACHER" extends="com.suxiaolei.hibernate.pojos.People"> <property name="salary" column="SALARY" type="integer"></property> </union-subclass> </hibernate-mapping>

以上配置是一個子類一張表方案的配置,<union-subclass>標籤是用於指示出該hbm檔案所表示的類的子類,如People類有兩個子類,就需要兩個<union-subclass>標籤以此類推。<union-subclass>標籤的"name"屬性用於指定子類的全限定名稱,"table"屬性用於指定該子類對應的表的名稱,"extends"屬性用於指定該子類的父類,注意該屬性與<union-subclass>標籤的位置有關,若 <union-subclass>標籤作為<class>標籤的子標籤,則"extends"屬性可以不設定,否則需要明確設定"extends"屬性。<class>標籤中的"abstract"屬性如果值為true則,不會生成表結構。如果值為false則會生成表結構,但是不會插入資料。

 

根據People.hbm.xml生成表結構:

  1. drop table if exists STUDENT
  2. drop table if exists TEACHER
  3. create table STUDENT (
  4. ID varchar(255) not null,
  5. NAME varchar(255),
  6. SEX varchar(255),
  7. AGE varchar(255),
  8. BIRTHDAY datetime,
  9. CARDID varchar(255),
  10. primary key (ID)
  11. )
  12. create table TEACHER (
  13. ID varchar(255) not null,
  14. NAME varchar(255),
  15. SEX varchar(255),
  16. AGE varchar(255),
  17. BIRTHDAY datetime,
  18. SALARY integer,
  19. primary key (ID)
  20. )

drop table if exists STUDENT drop table if exists TEACHER create table STUDENT ( ID varchar(255) not null, NAME varchar(255), SEX varchar(255), AGE varchar(255), BIRTHDAY datetime, CARDID varchar(255), primary key (ID) ) create table TEACHER ( ID varchar(255) not null, NAME varchar(255), SEX varchar(255), AGE varchar(255), BIRTHDAY datetime, SALARY integer, primary key (ID) )

可以看到一個子類對應一張表。

 

第二種方案:使用一張表表示所有繼承體系下的類的屬性的並集

這種策略是使用<subclass>標籤來實現的。因為類繼承體系下會有許多個子類,要把多個類的資訊存放在一張表中,必須有某種機制來區分哪些記錄是屬於哪個類的。Hibernate中的這種機制就是,在表中新增一個欄位,用這個欄位的值來進行區分。在表中新增這個標示列使用<discriminator>標籤來實現。

該策略的示意圖:

將繼承體系中的所有類資訊表示在同一張表中後,只要是這個類沒有的屬性會被自動賦上null。

 

配置People.hbm.xml:

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
  3. <hibernate-mapping>
  4. <class name="com.suxiaolei.hibernate.pojos.People" table="PEOPLE">
  5. <id name="id" type="string">
  6. <column name="ID"></column>
  7. <generator class="uuid"></generator>
  8. </id>
  9. <discriminator column="PEOPLETYPE" type="string"></discriminator>
  10. <property name="name" column="NAME" type="string"></property>
  11. <property name="sex" column="SEX" type="string"></property>
  12. <property name="age" column="AGE" type="string"></property>
  13. <property name="birthday" column="BIRTHDAY" type="timestamp"></property>
  14. <subclass name="com.suxiaolei.hibernate.pojos.Student" discriminator-value="student">
  15. <property name="cardId" column="CARDID" type="string"></property>
  16. </subclass>
  17. <subclass name="com.suxiaolei.hibernate.pojos.Teacher" discriminator-value="teacher">
  18. <property name="salary" column="SALARY" type="string"></property>
  19. </subclass>
  20. </class>
  21. </hibernate-mapping>

<?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"> <hibernate-mapping> <class name="com.suxiaolei.hibernate.pojos.People" table="PEOPLE"> <id name="id" type="string"> <column name="ID"></column> <generator class="uuid"></generator> </id> <discriminator column="PEOPLETYPE" type="string"></discriminator> <property name="name" column="NAME" type="string"></property> <property name="sex" column="SEX" type="string"></property> <property name="age" column="AGE" type="string"></property> <property name="birthday" column="BIRTHDAY" type="timestamp"></property> <subclass name="com.suxiaolei.hibernate.pojos.Student" discriminator-value="student"> <property name="cardId" column="CARDID" type="string"></property> </subclass> <subclass name="com.suxiaolei.hibernate.pojos.Teacher" discriminator-value="teacher"> <property name="salary" column="SALARY" type="string"></property> </subclass> </class> </hibernate-mapping>

<discriminator>標籤用於在表中建立一個標識列,其"column"屬性指定標識列的列名,"type"指定了標識列的型別。<subclass>標籤用於指定該HBM檔案代表類的子類,有多少子類就有多少個該標籤,其"name"屬性指定子類的名稱,"discriminator-value"屬性指定該子類的資料的標識列的值是什麼,其"extends"屬性與<union-subclass>的"extends"屬性用法一致。

 

根據People.hbm.xml生成表結構:

  1. drop table if exists PEOPLE
  2. create table PEOPLE (
  3. ID varchar(255) not null,
  4. PEOPLETYPE varchar(255) not null,
  5. NAME varchar(255),
  6. SEX varchar(255),
  7. AGE varchar(255),
  8. BIRTHDAY datetime,
  9. CARDID varchar(255),
  10. SALARY varchar(255),
  11. primary key (ID)
  12. )

drop table if exists PEOPLE create table PEOPLE ( ID varchar(255) not null, PEOPLETYPE varchar(255) not null, NAME varchar(255), SEX varchar(255), AGE varchar(255), BIRTHDAY datetime, CARDID varchar(255), SALARY varchar(255), primary key (ID) )

可以看到一張表將繼承體系下的所有資訊都包含了,其中"PEOPLETYPE"為標識列。

 

第三種方案:每個子類使用一張表只儲存它特有的屬性,然後與父類所對應的表以一對一主鍵關聯的方式關聯起來。

這種策略是使用<joined-subclass>標籤來定義子類的。父類、子類都對應一張資料庫表。在父類對應的資料庫表中,它儲存了所有記錄的公共資訊,實際上該父類對應的表會包含所有的記錄,包括父類和子類的記錄;在子類對應的資料庫表中,這個表只定義了子類中所特有的屬性對映的欄位。子類對應的資料表與父類對應的資料表,通過一對一主鍵關聯的方式關聯起來。

這種策略的示意圖:

people表中儲存了子類的所有記錄,但只記錄了他們共有的資訊,而他們獨有的資訊儲存在他們對應的表中,一條記錄要獲得其獨有的資訊,要通過people記錄的主鍵到其對應的子表中查詢主鍵值一樣的記錄然後取出它獨有的資訊。

 

配置People.hbm.xml:

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
  3. <hibernate-mapping>
  4. <class name="com.suxiaolei.hibernate.pojos.People" table="PEOPLE">
  5. <id name="id" type="string">
  6. <column name="ID"></column>
  7. <generator class="uuid"></generator>
  8. </id>
  9. <property name="name" column="NAME" type="string"></property>
  10. <property name="sex" column="SEX" type="string"></property>
  11. <property name="age" column="AGE" type="string"></property>
  12. <property name="birthday" column="BIRTHDAY" type="timestamp"></property>
  13. <joined-subclass name="com.suxiaolei.hibernate.pojos.Student" table="STUDENT">
  14. <key column="ID"></key>
  15. <property name="cardId" column="CARDID" type="string"></property>
  16. </joined-subclass>
  17. <joined-subclass name="com.suxiaolei.hibernate.pojos.Teacher" table="TEACHER">
  18. <key column="ID"></key>
  19. <property name="salary" column="SALARY" type="integer"></property>
  20. </joined-subclass>
  21. </class>
  22. </hibernate-mapping>

<?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"> <hibernate-mapping> <class name="com.suxiaolei.hibernate.pojos.People" table="PEOPLE"> <id name="id" type="string"> <column name="ID"></column> <generator class="uuid"></generator> </id> <property name="name" column="NAME" type="string"></property> <property name="sex" column="SEX" type="string"></property> <property name="age" column="AGE" type="string"></property> <property name="birthday" column="BIRTHDAY" type="timestamp"></property> <joined-subclass name="com.suxiaolei.hibernate.pojos.Student" table="STUDENT"> <key column="ID"></key> <property name="cardId" column="CARDID" type="string"></property> </joined-subclass> <joined-subclass name="com.suxiaolei.hibernate.pojos.Teacher" table="TEACHER"> <key column="ID"></key> <property name="salary" column="SALARY" type="integer"></property> </joined-subclass> </class> </hibernate-mapping>

<joined-subclass>標籤需要包含一個key標籤,這個標籤指定了子類和父類之間是通過哪個欄位來關聯的。

 

根據People.hbm.xml生成表結構:

  1. drop table if exists PEOPLE
  2. drop table if exists STUDENT
  3. drop table if exists TEACHER
  4. create table PEOPLE (
  5. ID varchar(255) not null,
  6. NAME varchar(255),
  7. SEX varchar(255),
  8. AGE varchar(255),
  9. BIRTHDAY datetime,
  10. primary key (ID)
  11. )
  12. create table STUDENT (
  13. ID varchar(255) not null,
  14. CARDID varchar(255),
  15. primary key (ID)
  16. )
  17. create table TEACHER (
  18. ID varchar(255) not null,
  19. SALARY integer,
  20. primary key (ID)
  21. )
  22. alter table STUDENT
  23. add index FK8FFE823BF9D436B1 (ID),
  24. add constraint FK8FFE823BF9D436B1
  25. foreign key (ID)
  26. references PEOPLE (ID)
  27. alter table TEACHER
  28. add index FKAA31CBE2F9D436B1 (ID),
  29. add constraint FKAA31CBE2F9D436B1
  30. foreign key (ID)
  31. references PEOPLE (ID)

drop table if exists PEOPLE drop table if exists STUDENT drop table if exists TEACHER create table PEOPLE ( ID varchar(255) not null, NAME varchar(255), SEX varchar(255), AGE varchar(255), BIRTHDAY datetime, primary key (ID) ) create table STUDENT ( ID varchar(255) not null, CARDID varchar(255), primary key (ID) ) create table TEACHER ( ID varchar(255) not null, SALARY integer, primary key (ID) ) alter table STUDENT add index FK8FFE823BF9D436B1 (ID), add constraint FK8FFE823BF9D436B1 foreign key (ID) references PEOPLE (ID) alter table TEACHER add index FKAA31CBE2F9D436B1 (ID), add constraint FKAA31CBE2F9D436B1 foreign key (ID) references PEOPLE (ID)

可以看到,父類對應的表儲存公有資訊,子類對應的表儲存獨有資訊,子類和父類對應的表使用一對一主鍵關聯的方式關聯起來。

 

 

在這三種方法中查詢速度:第二種方案 > 第一種方案 > 第三種方案。解耦程度:第三種方案 > 第一種方案 > 第二種方案。沒有那個絕對好與不好,只有最合適,我們根據需要選擇一個最為恰當的即可。由於筆者更注重效率問題,所以個人比較傾向於第二種方案。

相關文章