【文档摘要】J2EE Persistence - Introduction to the Java Persistence API【Entities Inheritance】

Entity Inheritance


1. Abstract Entities

对于abstract class,可以被query。query的操作是对于所有的concrete类生效。
@Entity
public abstract class Employee {
    @Id
    protected Integer employeeId;
    ...
}
@Entity
public class FullTimeEmployee extends Employee {
    protected Integer salary;
    ...
}
@Entity
public class PartTimeEmployee extends Employee {
    protected Float hourlyWage;
}

2. Mapped Superclass

Entity可能从非Entity继承,但是在父类中含有需要持久化的字段信息。因为没有@Entity,所以,Employee不能被query或通过entityManager使用。公用的字段是在具体子类定义的。

@MappedSuperclass
public class Employee {
    @Id
    protected Integer employeeId;
    ...
}
@Entity
public class FullTimeEmployee extends Employee {
    protected Integer salary;
    ...
}
@Entity
public class PartTimeEmployee extends Employee {
    protected Float hourlyWage;
    ...
}

3. Non-Entity Superclass

entity class可能含有concrete或abstract的非entity class,非entity superclass的状态是不可持久化的,非entity superclass也不能被query或通过entityManager使用


4. Entity Inheritance Mapping Strategies

使用@Inheritance标记策略

包含如下三种:

SINGLE_TABLE,JOINED,TABLE_PER_CLASS

1) Single Table

需要添加Discriminator Column来标示是哪一个具体子类型,@DiscriminatorColumn

2) Table Per Concrete Class

这种方法对多态支持不好,经常需要用UNIION进行查询(某些JPA的provider不一定支持这种继承实现方式, 如Glassfish)

3) Joined

这种方法需要额外的join操作


参考资料

https://docs.oracle.com/javaee/7/tutorial/doc/persistence-intro002.htm

单表继承例子:http://www.thejavageek.com/2014/05/14/jpa-single-table-inheritance-example/

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值