首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > 软件架构设计 >

22.hibernate沿袭映射joined

2012-06-29 
22.hibernate继承映射joinedperson表结构:teacher表结构:student表结构:package entityimport javax.pers

22.hibernate继承映射joined
person表结构:

teacher表结构:

student表结构:

package entity;import javax.persistence.Entity;@Entitypublic class Student extends Person {private int score;public int getScore() {return score;}public void setScore(int score) {this.score = score;}}

热点排行