我正试图在Hibernate中将一个映射到“零或一”关系。我想我可能找到了一种使用多对一的方法。
class A {
private B b;
// ... getters and setters
}
class B {
private A a;
}
A类的映射指定:
<many-to-one name="b" class="B"
insert="false" update="false"
column="id" unique="true"/>
和B类的映射指定:
<one-to-one name="a" class="A" constrained="true"/>
我想要的是,当在数据库中找不到B的匹配行时,b为null。所以我可以这样做(在A级):
if (b == null)
然而,似乎b永远不会为空。
我该怎么办?
答案 0 :(得分:17)
就像Boden所说,答案是将not-found="ignore"
添加到A中的多对一语句中。使用注释执行此操作:
在A组:
@ManyToOne
@Cascade({ CascadeType.ALL })
@JoinColumn(name = "Id")
@NotFound(action=NotFoundAction.IGNORE)
private B b
B组中的:
@Id
@GeneratedValue(generator = "myForeignGenerator")
@org.hibernate.annotations.GenericGenerator(
name = "myForeignGenerator",
strategy = "foreign",
parameters = @Parameter(name = "property", value = "a")
)
private Long subscriberId;
@OneToOne(mappedBy="b")
@PrimaryKeyJoinColumn
@NotFound(action=NotFoundAction.IGNORE)
private A a;
答案 1 :(得分:6)
答案是将not-found =“ignore”添加到A中的多对一语句中:
<many-to-one name="b" class="B" not-found="ignore" insert="false" update="false" column="id" unique="true"/>
我试图像Rob H推荐的那样简单地向B添加lazy =“false”,但每次加载没有B的A时,都会导致HibernateObjectRetrievalFailureException。
有关更多信息,请参阅此主题:
https://forum.hibernate.org/viewtopic.php?p=2269784&sid=5e1cba6e2698ba4a548288bd2fd3ca4e
答案 2 :(得分:0)
尝试在多对一元素上设置lazy =“false”。这应该强制Hibernate在加载第一个对象(“A”)时尝试获取关联(“B”)。 “A”中的属性将使用“B”的实例或null进行初始化。