首页 > 其他 > 详细

MyBatis 延迟加载

时间:2015-05-18 22:28:52      阅读:261      评论: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
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!