WEB开发网
开发学院WEB开发Jsp Hibernate的继承关系 阅读

Hibernate的继承关系

 2008-01-05 08:30:58 来源:WEB开发网   
核心提示:一、每个子类对应一个数据表(Table per concrete class) 学生表 create table `sample`.`student`( `id` bigint not null auto_increment, `name` varchar(20) default '' not nu
一、每个子类对应一个数据表(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() {

Tags:Hibernate 继承 关系

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接