Hibernate获取MAP优化(最小化SELECT语句)

时间:2011-02-11 11:50:11

标签: hibernate optimization map hibernate-mapping

如何获取没有其他select语句的地图。

我有这样的朋友:

            <map name="officeSet" table="office_employee" inverse="true" lazy="false"  batch-size="100" cascade="all">
                <key column="employee_id"/>
                <map-key-many-to-many column="office_id" class="by.epam.hibernatetask.model.Office"/>
                <element column="employee_position" type="java.lang.String"/>
            </map>

使用lazy =“false”和fetch =“join”我可以获取3个休眠查询的SET,但它不适用于MAP。 找不到解决方案。

0 个答案:

没有答案