如何在hbm.xml中的<key-many-to-one>映射中设置fetch =“Join”和lazy =“False”</key-many-to-one>

时间:2013-06-11 06:42:43

标签: java hibernate lazy-loading hibernate-mapping many-to-one

我在.hbm.xml文件中有表映射,如下所示。当我将延迟加载设置为false时,它无法正常工作。对于db来加载其他表是很多选择查询。

<class name="GroupConfigDO" table="GROUP_CONFIG" >
   <composite-id  >
    <key-property name="Group" column="group" type="java.lang.String"  />
    <key-many-to-one name="Method" column="method"  class="MethodDO" lazy="false" />
        <key-property name="entityId" column="entity_id" type="java.lang.String" /> 

</composite-id>

如何提供fetch类型加入和延迟加载为false?

1 个答案:

答案 0 :(得分:1)

使用

fetch="select|subselect|join|batch"

并选择您需要的适当关联