zoukankan      html  css  js  c++  java
  • MyBatis 延迟加载

    在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>
  • 相关阅读:
    剑指offer
    NET 的 ELK 监控方案
    SSM 框架整合
    搭建ELK 6
    NETCOREAPI 跨域处理
    修改数据库端口为51433
    修改ftp端口为50021
    文件每日备份批处理
    修改3389为53389
    批处理实现自动删除过期文件的定期操作
  • 原文地址:https://www.cnblogs.com/stono/p/4512982.html
Copyright © 2011-2022 走看看