我有AddressOrganization表。 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/

10-12 00:04