快速业务通道

hibernate annoation (七 继承映射) - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-25

hibernate annoation (七 继承映射)

时间:2009-10-10 javaeye ericjoe

Table per Class Strategy: the <union-class> element in Hibernate

Single Table per Class Hierarchy Strategy: the <subclass> element in Hibernate

Joined Subclass Strategy: the <joined-subclass> element in Hibernate

ejb支持三种映射关系

1,每个类一张表 (hibertnate里对应<union-class>)

2,每个类层次一张表 (在 hibernate里对应<subclass>)

3,连接的子类(对应join-subclass)

目前不支持在接口上进行注解

(1)每个类一张表:

在父类class-level上设置:@Inheritance(strategy=InheritanceType.TABLE_PER_CLASS)

例如:

Java代码

class A代码: @Entity @Inheritance(strategy=InheritanceType.TABLE_PER_CLASS) public class A {    private int id;  private String aname;  @Id   @GeneratedValue(strategy=GenerationType.IDENTITY)  public int getId() {  return id;  }   public void setId(int id) {  this.id = id;  }   public String getAname() {  return aname;  }   public void setAname(String aname) {  this.aname = aname;  }    }    class B extends A代码: @Entity public class B extends A{    private String bname;    public String getBname() {  return bname;  }     public void setBname(String bname) {  this.bname = bname;  }    }  class C extends A代码: @Entity  public class C extends A{    private String cname;      public String getCname() {  return cname;  }     public void setCname(String cname) {  this.cname = cname;  }      } 

hibernate annoation (七 继承映射)(2)

时间:2009-10-10 javaeye ericjoe

最终生成sql语句:

Java代码

create table A (id integer not null auto_increment, aname varchar(255), primary key (id)) create table B (id integer not null, aname varchar(255), bname varchar(255), primary key (id)) create table C (id integer not null, aname varchar(255), cname varchar(255), primary key (id)) 

B 和 C 都继承了A但是没有关联

(2)每个类层次一张表:也就是所有继承的类和父类共享一张表 通过一个辨别符号进行区分

这需要在父类上使用:@Inheritance(strategy=InheritanceType.SINGLE_TABLE)

这样的话在表里面会多出一个字段:DTYPE(默认 默认值为entry.class)

可以通过在父类class-level上设置

@DiscriminatorColumn(name="mytype",discriminatorType=DiscriminatorType.STRING)

在之类上使用

例如:

@Entity

@DiscriminatorValue(value="ctype")

插入数据时候将会有下列语句产生:Hibernate: insert into A (aname, cname, mytype) values (?, ?, ''ctype'');

(3)每个字类一张表:也就是字类的关联到父类的主键

通过在父类上使用:@Inheritance(strategy=InheritanceType.JOINED)

产生语句:默认id关联

Java代码

 create table A (id integer not null auto_increment, aname varchar(255), primary key (id))  create table B (bname varchar(255), id integer not null, primary key (id))  create table C (cname varchar(255), id integer not null, primary key (id))  alter table B add index FK42FCA55807 (id),

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号