我正在从旧的遗留数据库中读取数据。不知何故,他们使用 0 索引放置所有不存在的关系,例如:Object Person:id: 123name: johnsurname: snowbirthCityId: 0 <-- this means that there is no relationship between city and this person.现在,在 JPA 中,我遇到的问题是它正在加载人员实体,但找不到索引为 0 的相关城市实体。我想编写代码,当我有 ID 为 0 的城市时,城市实体设置为空。我怎样才能做到这一点?我不想在数据库中创建索引为 0 的新实体。
2 回答
白衣染霜花
TA贡献1796条经验 获得超10个赞
您可以使用 Hibernate@NotFound注释:
@ManyToOne
@NotFound(action=NotFoundAction.IGNORE)
private City birthCity;
https://docs.jboss.org/hibernate/orm/5.3/javadocs/index.html?org/hibernate/annotations/NotFound.html
我没有看到其他已发布的解决方案工作,因为在 Hibernate 加载时会发生异常,即在您能够通过其他方式处理它之前。
慕斯王
TA贡献1864条经验 获得超2个赞
我假设你有
Person{
@Many2One @JoinColumn("birthCityId") City birthCity;
...}
最简单的解决方案是在 city 中添加 id=0 的表行,其余为空
这给你的班级
@PostLoad
public viod cityInit(){
if(birthCity!=null&&birthCity.getId()==0){
birthCity==null;
}
}
有更优雅的解决方案,但这将使您快速入门
添加回答
举报
0/150
提交
取消