我在.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?
答案 0 :(得分:1)
使用
fetch="select|subselect|join|batch"
并选择您需要的适当关联