javax.persistence Annotation MappedSuperclass

Designates a class whose mapping information is applied to the entities that inherit from it.

指定一个类,其映射信息应用于从它继承的实体。

A mapped superclass has no separate table defined for it.

一个父类没有单独的表映射为它定义。

A class designated with the MappedSuperclass annotation can be mapped in the same way as an entity except that the mappings will apply only to its subclasses since no table exists for the mapped superclass itself.

一个指定MappedSuperclass注解的类可以以同样的方式映射为一个实体除了映射将只适用于它的子类之外因为父类本身的自映射不存在表。

When applied to the subclasses the inherited mappings will apply in the context of the subclass tables. Mapping information may be overridden in such subclasses by using the AttributeOverride and AssociationOverride annotations or corresponding XML elements.

当应用到子类时,继承的映射将应用于子类表的上下文中。
映射信息可以重写,这样子用attributeoverride和associationoverride注释或相应的XML元素。

Example: Concrete class as a mapped superclass

    @MappedSuperclass
    public class Employee {
 
        @Id protected Integer empId;
        @Version protected Integer version;
        @ManyToOne @JoinColumn(name="ADDR")
        protected Address address;
 
        public Integer getEmpId() { ... }
        public void setEmpId(Integer id) { ... }
        public Address getAddress() { ... }
        public void setAddress(Address addr) { ... }
    }
 
    // Default table is FTEMPLOYEE table
    @Entity
    public class FTEmployee extends Employee {
 
        // Inherited empId field mapped to FTEMPLOYEE.EMPID
        // Inherited version field mapped to FTEMPLOYEE.VERSION
        // Inherited address field mapped to FTEMPLOYEE.ADDR fk
 
        // Defaults to FTEMPLOYEE.SALARY
        protected Integer salary;
 
        public FTEmployee() {}
 
        public Integer getSalary() { ... }
 
        public void setSalary(Integer salary) { ... }
    }
 
    @Entity @Table(name="PT_EMP")
    @AssociationOverride(
        name="address", 
        joincolumns=@JoinColumn(name="ADDR_ID"))
    public class PartTimeEmployee extends Employee {
 
        // Inherited empId field mapped to PT_EMP.EMPID
        // Inherited version field mapped to PT_EMP.VERSION
        // address field mapping overridden to PT_EMP.ADDR_ID fk
        @Column(name="WAGE")
        protected Float hourlyWage;
 
        public PartTimeEmployee() {}
 
        public Float getHourlyWage() { ... }
        public void setHourlyWage(Float wage) { ... }
    }

 

转载于:https://my.oschina.net/weaver/blog/1486380

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值