记一次mybatis关联映射之两条sql映射到一个resultMap中「建议收藏」

记一次mybatis关联映射之两条sql映射到一个resultMap中「建议收藏」目标:在一个查询结果中嵌入另一个Sql的结果集ArrayList。用第一条Sql的结果集中的某些字段值为参数传给第二条Sql(其实是传给第二条Sql的Dao接口,传的参数要对应Dao接口中的形参)第一条SQL<selectid=”elsQueryAll”resultMap=”CompanyResultMapDto”>SELECTid,…

大家好,又见面了,我是你们的朋友全栈君。如果您正在找激活码,请点击查看最新教程,关注关注公众号 “全栈程序员社区” 获取激活教程,可能之前旧版本教程已经失效.最新Idea2022.1教程亲测有效,一键激活。

Jetbrains全系列IDE使用 1年只要46元 售后保障 童叟无欺

目标:在一个查询结果中嵌入另一个Sql的结果集ArrayList。用第一条Sql的结果集中的某些字段值为参数传给第二条Sql(其实是传给第二条Sql的Dao接口,传的参数要对应Dao接口中的形参)


第一条SQL

<select id="elsQueryAll" resultMap="CompanyResultMapDto">
    SELECT
        id,
        comp_name,
        comp_area_id,
        (select complete_path from rz_area where id = comp_area_id) as comp_area_name ,
        comp_area_info,
        create_time,
        update_time,
        conn_user_name,
        conn_user_tel,
        data_type,
        balance,
        frozen_balance,
        STATUS,
        delete_flag,
        business_license,
        cs_phone
        main_products,
        lat_x,
        lng_y,
        'sys_company' as target_table
    FROM
	    sys_company
	limit #{start},#{rows}
    </select>

第一条SQL的映射

<resultMap id="CompanyResultMapDto" type="com.rz.dto.RzCompanyDto">
        <id column="id" jdbcType="BIGINT" property="id" />
        <result column="comp_name" jdbcType="VARCHAR" property="compName" />
        <result column="comp_area_id" jdbcType="VARCHAR" property="compAreaId" />
        <result column="comp_area_name" jdbcType="VARCHAR" property="compAreaName" />
        <result column="comp_area_info" jdbcType="VARCHAR" property="compAreaInfo" />
        <result column="create_time" jdbcType="TIMESTAMP" property="createTime" />
        <result column="update_time" jdbcType="TIMESTAMP" property="updateTime" />
        <result column="conn_user_name" jdbcType="VARCHAR" property="connUserName" />
        <result column="conn_user_tel" jdbcType="VARCHAR" property="connUserTel" />
        <result column="data_type" jdbcType="CHAR" property="dataType" />
        <result column="balance" jdbcType="DECIMAL" property="balance" />
        <result column="frozen_balance" jdbcType="DECIMAL" property="frozenBalance" />
        <result column="status" jdbcType="CHAR" property="status" />
        <result column="delete_flag" jdbcType="CHAR" property="deleteFlag" />
        <result column="business_license" jdbcType="BIGINT" property="businessLicense" />
        <result column="cs_phone" jdbcType="VARCHAR" property="csPhone" />
        <result column="main_products" jdbcType="VARCHAR" property="mainProducts" />
        <result column="lat_x" jdbcType="VARCHAR" property="latX" />
        <result column="lng_y" jdbcType="VARCHAR" property="lngY" />
        <result column="targetTable" jdbcType="VARCHAR" property="target_table" />
        <collection property="pictures" select="com.rz.dao.RzPicInfoMapper.selectByTargetTableAndTableId" fetchType="eager" column="{targetTable=target_table,tableId=id}"></collection>
    </resultMap>

第二条SQL及Dao

<select id="selectByTargetTableAndTableId" resultType="com.rz.domain.RzPicInfo">
      select * from rz_pic_info where target_table=#{targetTable} and table_id=#{tableId}
    </select>
/**
     * 该方法已经作为SysCompanyMapper中的联合查询(使用方式参考模板),删除请谨慎
     * @param targetTable
     * @param tableId
     * @return
     */
    List<RzPicInfo> selectByTargetTableAndTableId(@Param("targetTable") String targetTable, @Param("tableId") Long tableId);

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/189634.html原文链接:https://javaforall.cn

【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛

【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...

(0)


相关推荐