在我的应用程序中,有一个 Person 实体,它具有许多 PersonRole 类型的角色。
@Entity
public class Person {
@OneToMany(mappedBy = "person",
cascade=CascadeType.ALL,
orphanRemoval=true,
fetch=FetchType.LAZY)
protected Set<PersonRole> roles;
...
}
@Entity
public abstract class PersonRole {
@ManyToOne
protected Person person;
...
}
有时数据库中有重复的人,我正在尝试实现一个函数将这两个人合并为一个。由于 PersonRole 还附加了一些权限,我不想删除并重新创建它,我想将它从死亡的人移动到幸存的人:
for (PersonRole role : dieing.getRoles()) {
role.mergeInto(surviving);
}
dieing.getRoles().clear();
PersonRole 中的方法如下所示:
public void mergeInto(Person surviving ) {
this.person = surviving;
surviving.getRoles().add(this);
}
不幸的是,它不起作用。当我运行它时,PersonRoles 被删除并且没有添加到幸存的人中。
我需要更改什么,以便通过 surviving.roles 关系添加和保留它们?