如何在数据库中保存层次结构类?

时间:2014-07-01 08:12:29

标签: java hibernate inheritance

我使用Java和Hibernate将我的实体保存在数据库中,但它根本不能正常工作。 我有一个实体Entreprise:

@Entity
public class Entreprise{

@Id
private long identifier;

@OneToMany(fetch = FetchType.EAGER, cascade = CascadeType.ALL)
private List<Person>  persons;

...
// getters and setters

} 

这里的Person实体是其他实体的超类:

@Entity
@Inheritance(strategy = InheritanceType.JOINED)
public class Person{

@Id
private long identifier;

@Column
private String name;

...
 // constructors,getter and setter

} 

我的两个子类:

@Entity
public class Employed extends Person{

 @Column
 private String actualJob;

 // constructors,getter and setter
}


@Entity
public class Unemployed extends Person{

 @Column
 private String lastJob;

// constructors,getter and setter
}

这是我在数据库中保存实体的方法:

Person person = new Employed();
person.setName("John");
Employed employed = (Employed) person;
employed.setActualJob("electrician");
Entreprise myEntreprise = new Entreprise();
entreprise.getPersons().addPerson(person);
entrepriseDao.save(entreprise);

但是在数据库中,插入只是在表Entreprise和Person中创建的。在Employed表中没有插入任何内容。我不知道为什么有人能解释我,请?

我尝试以下代码也不起作用:

Employed employed = new Employed();
employed.setActualJob("electrician");
employed.setName("John");
Entreprise myEntreprise = new Entreprise();
entreprise.getPersons().addPerson(employed);
entrepriseDao.save(entreprise);

我不明白为什么即使我使用子类设置数据它也不起作用。

这是ddl

Hibernate: insert into Entreprise_Person (Entreprise_identifier, person_identifier) values (?, ?);

2 个答案:

答案 0 :(得分:0)

您正在向企业列表中添加人员引用:

entreprise.getPersons().addPerson(person);

这样做,您只会添加人员的数据,而不是扩展的受雇人员的数据。您应该添加使用的对象。

答案 1 :(得分:0)

尝试将@PrimaryKeyJoinColumn(name = "YOUR_SUBCLASS_ID_FIELD_THAT_WILL_MATCH_THE_SUPERCLASS_ID_FIELD")添加到所有子类。

子类也需要标识符,这是它们链接到超类记录的方式。

@Entity
@PrimaryKeyJoinColumn(name = "identifier")
public class Employed extends Person{

 @Id
 private long identifier;

 @Column
 private String actualJob;

 // constructors,getter and setter
}


@Entity
@PrimaryKeyJoinColumn(name = "identifier")
public class Unemployed extends Person{

 @Id
 private long identifier;

 @Column
 private String lastJob;

// constructors,getter and setter
}