我正在开发一个Spring Hibernate项目,我有三个类
BaseEntity
,Person
& Owner
。
Person
延伸BaseEntity
,Owner
延伸Person
。
public class BaseEntity {
private Integer id;
Getters & Setters
public class Person extends BaseEntity {
private String firstName;
private String lastName;
Getters & Setters
@Entity
@Table(name="OWNERS")
public class Owner extends Person {
@Column(name="ADDRESS")
private String address;
@Column(name="CITY")
private String city;
@Column(name="TELEPHONE")
private String telephone;
Getter and Setters
现在我想在一个表中映射这三个类的所有属性
是Owner
。任何人都可以帮我,我该如何映射?
我有一个基于xml的映射用于此&我想在注释中做到这一点
<class name="org.springframework.samples.petclinic.Owner" table="owners">
<id name="id" column="id">
<generator class="identity"/>
</id>
<property name="firstName" column="first_name"/>
<property name="lastName" column="last_name"/>
<property name="address" column="address"/>
<property name="city" column="city"/>
<property name="telephone" column="telephone"/>
</class>
我想过使用每个类继承映射的表,但是在xml中我看到没有 正在使用的鉴别器列。
答案 0 :(得分:11)
使用@MappedSuperclass注释。
JPA(...)定义了通过@MappedSuperclass注释或元素定义的映射超类概念。映射的超类不是持久类,但允许为其子类定义公共映射。
更多:Java Persistence/Inheritance
@MappedSuperclass
public class BaseEntity {
...
}
@MappedSuperclass
public class Person extends BaseEntity {
...
}
@Entity
@Table(name="OWNERS")
public class Owner extends Person {
...
}
还要看这个问题:Hibernate : How override an attribute from mapped super class