我有Address
和Organization
表。 Address
具有名为organizationID
的FK。Address
类具有以下属性:
Organization organization;
Organization
类具有以下属性:Address address property;
Address
的映射:<one-to-one name="organization" class="entity3.Organization"
constrained="true">
</one-to-one>
如何指定FK列
organizationID
?如果我放<column name="OrganizationID" not-null="true"/>
一对一的标签之间,我得到XML解析错误。
最佳答案
尝试使用property-ref
属性,如下所示:
<one-to-one name="organization" class="entity3.Organization" property-ref="OrganizationID" constrained="true"/>
关于java - hibernate 一对一映射文件,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8196517/