码迷,mamicode.com
首页 > 其他好文 > 详细

MyBatis 延迟加载

时间:2015-05-18 22:30:18      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:

在sqlMapConfig中进行设置

<configuration>
    <settings>
        <!--延迟加载的总开关-->
        <setting name="lazyLoadingEnabled" value="true"/>
        <!--设置为false才是启动延迟加载-->
        <setting name="aggresiveLazyLoading" value="false"/>
    </settings>
......
</configuration>

在mapper.xml中使用两次查询的方式;

 <!-- 2.查询两次select * from class where c_id = 1 ; SELECT * from teacher where 
        t_id = 1 -->

    <select id="getClass2" resultMap="getClass2Map">
        select * from class where c_id
        =#{id}
    </select>
    <select id="getTeacher" parameterType="int" resultType="com.stone.bean.Teacher">
        select
        t_id id,t_name name
        from teacher where t_id=#{id}
    </select>
    <select id="getStudents" parameterType="int" resultType="com.stone.bean.Student">
        select
        S_id id,s_name name from student where c_id=#{id}
    </select>
    <resultMap type="com.stone.bean.ClassT" id="getClass2Map">
        <id property="id" column="c_id" />
        <result property="name" column="c_name" />
        <association property="teacher" column="t_id" select="getTeacher">
        </association>
        <collection property="list" column="c_id" select="getStudents"></collection>
    </resultMap>

 

MyBatis 延迟加载

标签:

原文地址:http://www.cnblogs.com/stono/p/4512982.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!