0

我想在休眠中使用lazy="true" ,同时在JAVA中使用Jersey加载细节。但我得到错误。(hbm 版本 5.1.3.Final)

这是我的代码:

 <class name="com.icaube.application.prac.details.PracAccountDetail" table="prac_account_master">
    <id column="account_id" name="accountId">
        <generator class="com.icube.platform.IdGenerator">
            <param name="componentName">PracAccount</param>
        </generator>
    </id>

//here lazy=true     
<many-to-one name="pracRankDetail" class="com.icaube.application.prac.details.PracRankDetail" column="rank_id" lazy="true"/>  

<one-to-one name="pracAddressDetail" property-ref="accountId" lazy="false"  />

<property column="name" name="name"  not-null="true" unique="false"/>

    <property column="rank_id" name="rankId"  not-null="true" unique="false"/>
</class>

得到错误: Initial SessionFactory creation failed.org.hibernate.boot.InvalidMappingEelloxception: Could not parse mapping document: PracComponents.hbm.xml (RESOURCE)

这有什么问题?我怎样才能使它正确?

谢谢 :-)

4

2 回答 2

0

你的班级标签

<class name="com.icaube.application.prac.details.PracAccountDetail" table="prac_account_master">

没有被关闭,或者您没有在您的 xml 文件中发布所有内容。

于 2018-02-20T11:04:10.003 回答
0

错误无法解析映射文档是关于您的 xml 文件格式不正确。当这个错误出现时,我们最好仔细检查我们的 xml 文件,看看它们是否真的没问题(所有标签都正确关闭等等)。

要了解更多信息,请参阅以下链接:

org.hibernate.InvalidMappingException:无法从资源 *.hbm.xml 解析映射文档

https://coderanch.com/t/217940/databases/Hibernate-InvalidMappingException-parse-mapping-document

于 2018-02-20T11:49:40.450 回答