EJB3.0 学习教程(连载) 第六部分

 
第六部分   继承(Inheritance strategy)
EJB3 规定了三种基本的继承映射策略:
. 每个类分层结构一张表(table per class hierarchy)
. 每个子类一张表(table per subclass)
. 每个具体类一张表(table per concrete class)
在我们提供的Alpha版本中仅支持第一种映射策略,即每个类层次一个表。我们将在下一个版本中提供每个具体类一张表的支持, 考虑到性能,这两个映射策略也是推荐的映射策略.
每个类分层结构一张表(Table per class hierarchy)
假设有这么一个继承类层次:Employee,两个子类FullTimeEmployee,PartTimeEmployee 源代码如下所示:
                              
@Entity
@Table( name="inheritance_Employee" )
@Inheritance(strategy=InheritanceType.SINGLE_TABLE,
               discriminatorType=DiscriminatorType.STRING,
               discriminatorValue="employee")
public class Employee {...}
                                     
@Entity
@Inheritance(discriminatorValue="fullTimeEmp")
public class FullTimeEmployee extends Employee {...}
 
@Entity
@Inheritance(discriminatorValue="partTimeEmp")
public class PartTimeEmployee extends Employee {...}
               
                      
代码中元数据的说明:
基类中元数据描述:
@Inheritance(strategy=InheritanceType.SINGLE_TABLE,
discriminatorType=DiscriminatorType.STRING,discriminatorValue="employee")
strategy=InheritanceType.SINGLE_TABLE 表示继承映射采用第一种映射策略。
discriminatorType=DiscriminatorType.STRING 表示继承层次中类型识别列类型为String.
discriminatorValue="employee" 表示此类对应的类型识别码为employee.
 

你可能感兴趣的:(数据结构)