Java Mybatis
resultMap 是 Mybatis 最强大的元素,它可以将查询到的复杂数据(比如查询到几个表中数据)映射到一个结果集当中。
resultMap 包含的元素:

  1. <!--column不做限制,可以为任意表的字段,而property须为type定义的pojo属性-->
  2. <resultMap id="唯一的标识"type="映射的pojo对象">
  3. <id column="表的主键字段,或者可以为查询语句中的别名字段" jdbcType="字段类型" property="映射pojo对象的主键属性" />
  4. <result column="表的一个字段(可以为任意表的一个字段)" jdbcType="字段类型" property="映射到pojo对象的一个属性(须为type定义的pojo对象中的一个属性)"/>
  5. <association property="pojo的一个对象属性" javaType="pojo关联的pojo对象">
  6. <id column="关联pojo对象对应表的主键字段" jdbcType="字段类型" property="关联pojo对象的主席属性"/>
  7. <result column="任意表的字段" jdbcType="字段类型" property="关联pojo对象的属性"/>
  8. </association>
  9. <!-- 集合中的property须为oftype定义的pojo对象的属性-->
  10. <collection property="pojo的集合属性" ofType="集合中的pojo对象">
  11. <id column="集合中pojo对象对应的表的主键字段" jdbcType="字段类型" property="集合中pojo对象的主键属性" />
  12. <result column="可以为任意表的字段" jdbcType="字段类型" property="集合中的pojo对象的属性" />
  13. </collection>
  14. </resultMap>

如果 collection 标签是使用嵌套查询,格式如下:

  1. <collection column="传递给嵌套查询语句的字段参数" property="pojo对象中集合属性" ofType="集合属性中的pojo对象"select="嵌套的查询语句" >
  2. </collection>

注意:<collection>标签中的column:要传递给 select 查询语句的参数,如果传递多个参数,格式为column= "{参数名1=表字段1,参数名2=表字段2}"

以下以实例介绍 resultMap 的用法:

一、简单需求

一个商品的结果映射;

  • 创建商品 pojo 对象 ```java public class TShopSku { /**

    • 主键ID */ private Long id;

    /**

    • 商品名 */ private String skuName;

    /**

    • 分类ID */ private Long categoryId;

    /**

    • 主键ID
    • @return ID */ public Long getId() { returnid; }

    /**

    • 主键ID,
    • @param id */ public void setId(Long id) { this.id = id; }

    /**

    • 商品名
    • @return SKU_NAME 商品名 */ public String getSkuName() { return skuName; }

    /**

    • 商品名
    • @param skuName 商品名 */ public void setSkuName(String skuName) { this.skuName = skuName == null ? null : skuName.trim(); }

    /**

    • 分类ID
    • @return CATEGORY_ID 分类ID */ public Long getCategoryId() { return categoryId; }

    /**

    • 分类ID
    • @param categoryId 分类ID */ public void setCategoryId(Long categoryId) { this.categoryId = categoryId; }

}

  1. 对应的 resultMap
  2. ```xml
  3. <resultMap id="BaseResultMap"type="com.shop.entity.TShopSku">
  4. <id column="ID" jdbcType="BIGINT" property="id" />
  5. <result column="SKU_NAME" jdbcType="VARCHAR" property="skuName" />
  6. <result column="CATEGORY_ID" jdbcType="BIGINT" property="categoryId" />
  7. </resultMap>

二、商品pojo类添加属性集合

一个商品会有一些属性,现在需要将查询出的商品属性添加到商品对象中,首先需要在原商品 pojo 类的基础上中添加属性的集合:

  1. /**
  2. * 属性集合
  3. */
  4. private List<TShopAttribute> attributes;
  5. /**
  6. * 获得属性集合
  7. */
  8. public List<TShopAttribute> getAttributes() {
  9. return attributes;
  10. }
  11. /**
  12. * 设置属性集合
  13. * @param attributes
  14. */
  15. public void setAttributes(List<TShopAttribute> attributes) {
  16. this.attributes = attributes;
  17. }

将 Collection 标签添加到 resultMap 中

这里有两种方式:

1、嵌套结果

对应的 resultMap

  1. <resultMap id="BasePlusResultMap"type="com.shop.entity.TShopSku">
  2. <id column="ID" jdbcType="BIGINT" property="id" />
  3. <result column="SKU_NAME" jdbcType="VARCHAR" property="skuName" />
  4. <result column="CATEGORY_ID" jdbcType="BIGINT" property="categoryId" />
  5. <collection property="attributes" ofType="com.shop.entity.TShopAttribute" >
  6. <id column="CATEGORY_ID" jdbcType="BIGINT" property="id" />
  7. <result column="ATTRIBUTE_NAME" jdbcType="VARCHAR" property="attributeName" />
  8. </collection>
  9. </resultMap>

查询语句

  1. <select id="getById" resultMap="basePlusResultMap">
  2. select
  3. s.ID, s.SKU_NAME, s.CATEGORY_ID, a.ID, a.ATTRIBUTE_NAME
  4. from
  5. t_shop_sku s, t_shop_attribute a
  6. where
  7. s.ID = a.SKU_ID
  8. and
  9. s.ID = #{id,jdbcType =BIGINT};
  10. </select>

2、关联的嵌套查询(在collection中添加select属性)

商品结果集映射 resultMap

  1. <resultMap id="BasePlusResultMap"type="com.shop.entity.TShopSku">
  2. <id column="ID" jdbcType="BIGINT" property="id" />
  3. <result column="SKU_NAME" jdbcType="VARCHAR" property="skuName" />
  4. <result column="CATEGORY_ID" jdbcType="BIGINT" property="categoryId" />
  5. <collection column="{skuId=ID}" property="attributes" ofType="com.shop.entity.TShopAttribute"select="getAttribute" >
  6. </collection>
  7. </resultMap>

collection 的 select 会执行下面的查询属性语句:

  1. <select id="getAttribute" resultMap="AttributeResultMap">
  2. select
  3. a.ID, s.ATTRIBUTE_NAME
  4. from
  5. t_shop_attribute a
  6. where
  7. a.ID = #{skuId,jdbcType =BIGINT};
  8. </select>

属性结果集映射

  1. <resultMap id="AttributeResultMap"type="com.shop.entity.TShopAttribute">
  2. <id column="ID" jdbcType="BIGINT" property="id" />
  3. <result column="ATTRIBUTE_NAME" jdbcType="VARCHAR" property="attributeName" />
  4. </resultMap>

BasePlusResultMap 包含了属性查询语句的 Collection
所以通过下面的查询商品语句就可获得商品以及其包含的属性集合:

  1. <select id="getById" resultMap="BasePlusResultMap">
  2. select
  3. s.ID,s.SKU_NAME,s.CATEGORY_ID
  4. from
  5. t_shop_sku s
  6. where
  7. s.ID = #{id,jdbcType =BIGINT};
  8. </select>