前言

mybatis 中 association 和 collection 的 column 传入多个参数值,项目中在使用 association 和 collection 实现一对一和一对多关系时需要对关系中结果集进行筛选,如果使用懒加载模式,即联合使用 select 标签时,主 sql 和关系映射里的 sql 是分开的,查询参数传递成为问题。

mybatis文档描述

column 数据库的列名或者列标签别名。与传递给 resultSet.getString(columnName) 的参数名称相同。注意: 在处理组合键时,您可以使用 column="{id=id, lngId=lngId}" 这样的语法,设置多个列名传入到嵌套查询语句。这就会把 prop1 和 prop2 设置到目标嵌套选择语句的参数对象中。

  1. <resultMap type="com.zres.product.resmaster.portal.homePage.entity.ResTreeDetailEntity" id="leftTreeFirstMaps">
  2. <id column="id" jdbcType="INTEGER" property="id"/>
  3. <id column="lngId" jdbcType="INTEGER" property="lngId"/>
  4. <collection property="children"
  5. ofType="com.zres.product.resmaster.portal.homePage.entity.ResTreeDetailEntity"
  6. select="queryLeftTreeById"
  7. column="{id=id, lngId=lngId}">
  8. </collection>
  9. </resultMap>
  10. <select id="queryLeftTreeById" parameterType="map" resultMap="leftTreeFirstMaps">
  11. SELECT prt.id,
  12. prt.tree_id as treeId,
  13. prt.parent_id as parentId,
  14. prt.res_type_id as resTypeId,
  15. #{lngId} as lngId,
  16. <choose>
  17. <when test="lngId == -1">
  18. prt.res_type as resName,
  19. </when>
  20. <otherwise>
  21. FUN_GET_LNG_DESC(#{lngId},prt.id,prt.res_type,'PUB_RES_TREE_DETAIL',prt.env_domain_id) as resName,
  22. </otherwise>
  23. </choose>
  24. prt.icon as icon,
  25. prt.query_id as queryId,
  26. prt.role_id as roleId
  27. FROM pub_res_tree_detail prt
  28. WHERE prt.is_display = 1
  29. AND prt.parent_id = #{id}
  30. AND prt.is_resource = 2
  31. </select>

来源:https://blog.csdn.net/yangbo787827967/article/details/86648878