Hibernate的继承关系

文章作者 100test 发表时间 2007:04:06 22:07:06
来源 100Test.Com百考试题网


一、每个子类对应一个数据表(Table per concrete class)
学生表
create table `sample`.`student`(
`id` bigint not null auto_increment,
`name` varchar(20) default not null,
`score` float,
primary key (`id`)
).
create unique index `PRIMARY` on `sample`.`student`(`id`).
教师表
create table `sample`.`teacher`(
`id` bigint not null auto_increment,
`name` varchar(20) default not null,
`salary` float(6,2),
primary key (`id`)
).
create unique index `PRIMARY` on `sample`.`teacher`(`id`).
Person抽象基类
public abstract class Person implements java.io.Serializable {
private Long id.
private String name.
/**defaultconstructor*/
public Person() {
}
public Long getId() {
returnthis.id.
}
publicvoid setId(Long id) {
this.id = id.
}
public String getName() {
returnthis.name.
}
publicvoid setName(String name) {
this.name = name.
}
}
子类分别实现它,并添加额外的属性和相应getttersetter方法。
Student类:
public class Student extends Person {
private Float score.
public Student() {
super().
}
public Float getScore() {
returnscore.
}
publicvoid setScore(Float score) {
this.score = score.
}
}
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">
<hibernate-configuration>
<session-factory>
<property name="connection.username">rootproperty>
<property name="connection.url">
jdbc:mysql://localhost:3306/sample
property>
<property name="dialect">
org.hibernate.dialect.MySQLDialect
property>
<property name="connection.password">12345678property>
<property name="connection.driver_class">
com.mysql.jdbc.Driver
property>
<property name="show_sql">trueproperty>
<property name="current_session_context_class">threadproperty>
<mapping resource="powerwind/bean/Student.hbm.xml" />
<mapping resource="powerwind/bean/Teacher.hbm.xml" />
session-factory>
hibernate-configuration>
由于Person抽象类没有对应数据库的表,也没有对应的映射文件,在HQL查询中也就不支持多态查询。感觉上,Person抽象类的作用只是减少JAVA代码的编写而已。


相关文章


Hibernate编写通用数据库操作代码
开源技术—hiernate的锁机制
开源技术—hibernate点滴
使用hibernate实现树形结构无限级分类
Hibernate的继承关系
了解Hibernate的FlushMode.NEVER模式
在Hibernate中配置Proxool连接池
关于spring中的aop的解释
关于spring框架中的ioc的幽默解释
澳大利亚华人论坛
考好网
日本华人论坛
华人移民留学论坛
英国华人论坛