Mybatis:resultMap的使用总结
Mybatis 的介绍以及使用:http://www.mybatis.org/mybatis-3/zh/index.html
resultMap 是 Mybatis 最强大的元素,它可以将查询到的复杂数据(比如查询到几个表中数据)映射到一个结果集当中。
resultMap 包含的元素:
<!--column 不做限制,可以为任意表的字段,而 property 须为 type 定义的 pojo 属性--> <resultMap id="唯一的标识" type="映射的 pojo 对象"> <id column="表的主键字段,或者可以为查询语句中的别名字段" jdbcType="字段类型" property="映射 pojo 对象的主键属性" /> <result column="表的一个字段(可以为任意表的一个字段)" jdbcType="字段类型" property="映射到 pojo 对象的一个属性(须为 type 定义的 pojo 对象中的一个属性)"/> <association property="pojo 的一个对象属性" javaType="pojo 关联的 pojo 对象"> <id column="关联 pojo 对象对应表的主键字段" jdbcType="字段类型" property="关联 pojo 对象的主席属性"/> <result column="任意表的字段" jdbcType="字段类型" property="关联 pojo 对象的属性"/> </association> <!-- 集合中的 property 须为 oftype 定义的 pojo 对象的属性--> <collection property="pojo 的集合属性" ofType="集合中的 pojo 对象"> <id column="集合中 pojo 对象对应的表的主键字段" jdbcType="字段类型" property="集合中 pojo 对象的主键属性" /> <result column="可以为任意表的字段" jdbcType="字段类型" property="集合中的 pojo 对象的属性" /> </collection> </resultMap>
如果 collection 标签是使用嵌套查询,格式如下:
<collection column="传递给嵌套查询语句的字段参数" property="pojo 对象中集合属性" ofType="集合属性中的 pojo 对象" select="嵌套的查询语句" > </collection>
注意:<collection> 标签中的 column:要传递给 select 查询语句的参数,如果传递多个参数,格式为 column= ” {参数名 1= 表字段 1, 参数名 2= 表字段 2} ;
以下以实例介绍 resultMap 的用法:
一、简单需求:一个商品的结果映射;
1、创建商品 pojo 对象:
public class TShopSku { /** * 主键 ID */ private Long id;</span><span style="color: rgba(0, 128, 0, 1)">/**</span><span style="color: rgba(0, 128, 0, 1)"> * 商品名 </span><span style="color: rgba(0, 128, 0, 1)">*/</span> <span style="color: rgba(0, 0, 255, 1)">private</span><span style="color: rgba(0, 0, 0, 1)"> String skuName; </span><span style="color: rgba(0, 128, 0, 1)">/**</span><span style="color: rgba(0, 128, 0, 1)"> * 分类ID </span><span style="color: rgba(0, 128, 0, 1)">*/</span> <span style="color: rgba(0, 0, 255, 1)">private</span><span style="color: rgba(0, 0, 0, 1)"> Long categoryId; </span><span style="color: rgba(0, 128, 0, 1)">/**</span><span style="color: rgba(0, 128, 0, 1)"> * 主键ID * </span><span style="color: rgba(128, 128, 128, 1)">@return</span><span style="color: rgba(0, 128, 0, 1)"> ID </span><span style="color: rgba(0, 128, 0, 1)">*/</span> <span style="color: rgba(0, 0, 255, 1)">public</span><span style="color: rgba(0, 0, 0, 1)"> Long getId() { </span><span style="color: rgba(0, 0, 255, 1)">return</span><span style="color: rgba(0, 0, 0, 1)"> id; } </span><span style="color: rgba(0, 128, 0, 1)">/**</span><span style="color: rgba(0, 128, 0, 1)"> * 主键ID, * </span><span style="color: rgba(128, 128, 128, 1)">@param</span><span style="color: rgba(0, 128, 0, 1)"> id </span><span style="color: rgba(0, 128, 0, 1)">*/</span> <span style="color: rgba(0, 0, 255, 1)">public</span> <span style="color: rgba(0, 0, 255, 1)">void</span><span style="color: rgba(0, 0, 0, 1)"> setId(Long id) { </span><span style="color: rgba(0, 0, 255, 1)">this</span>.id =<span style="color: rgba(0, 0, 0, 1)"> id; } </span><span style="color: rgba(0, 128, 0, 1)">/**</span><span style="color: rgba(0, 128, 0, 1)"> * 商品名 * </span><span style="color: rgba(128, 128, 128, 1)">@return</span><span style="color: rgba(0, 128, 0, 1)"> SKU_NAME 商品名 </span><span style="color: rgba(0, 128, 0, 1)">*/</span> <span style="color: rgba(0, 0, 255, 1)">public</span><span style="color: rgba(0, 0, 0, 1)"> String getSkuName() { </span><span style="color: rgba(0, 0, 255, 1)">return</span><span style="color: rgba(0, 0, 0, 1)"> skuName; } </span><span style="color: rgba(0, 128, 0, 1)">/**</span><span style="color: rgba(0, 128, 0, 1)"> * 商品名 * </span><span style="color: rgba(128, 128, 128, 1)">@param</span><span style="color: rgba(0, 128, 0, 1)"> skuName 商品名 </span><span style="color: rgba(0, 128, 0, 1)">*/</span> <span style="color: rgba(0, 0, 255, 1)">public</span> <span style="color: rgba(0, 0, 255, 1)">void</span><span style="color: rgba(0, 0, 0, 1)"> setSkuName(String skuName) { </span><span style="color: rgba(0, 0, 255, 1)">this</span>.skuName = skuName == <span style="color: rgba(0, 0, 255, 1)">null</span> ? <span style="color: rgba(0, 0, 255, 1)">null</span><span style="color: rgba(0, 0, 0, 1)"> : skuName.trim(); } </span><span style="color: rgba(0, 128, 0, 1)">/**</span><span style="color: rgba(0, 128, 0, 1)"> * 分类ID * </span><span style="color: rgba(128, 128, 128, 1)">@return</span><span style="color: rgba(0, 128, 0, 1)"> CATEGORY_ID 分类ID </span><span style="color: rgba(0, 128, 0, 1)">*/</span> <span style="color: rgba(0, 0, 255, 1)">public</span><span style="color: rgba(0, 0, 0, 1)"> Long getCategoryId() { </span><span style="color: rgba(0, 0, 255, 1)">return</span><span style="color: rgba(0, 0, 0, 1)"> categoryId; } </span><span style="color: rgba(0, 128, 0, 1)">/**</span><span style="color: rgba(0, 128, 0, 1)"> * 分类ID * </span><span style="color: rgba(128, 128, 128, 1)">@param</span><span style="color: rgba(0, 128, 0, 1)"> categoryId 分类ID </span><span style="color: rgba(0, 128, 0, 1)">*/</span> <span style="color: rgba(0, 0, 255, 1)">public</span> <span style="color: rgba(0, 0, 255, 1)">void</span><span style="color: rgba(0, 0, 0, 1)"> setCategoryId(Long categoryId) { </span><span style="color: rgba(0, 0, 255, 1)">this</span>.categoryId =<span style="color: rgba(0, 0, 0, 1)"> categoryId; }
对应的 resultMap:
<resultMap id="BaseResultMap" type="com.meikai.shop.entity.TShopSku"> <id column="ID" jdbcType="BIGINT" property="id" /> <result column="SKU_NAME" jdbcType="VARCHAR" property="skuName" /> <result column="CATEGORY_ID" jdbcType="BIGINT" property="categoryId" /> </resultMap>
二、商品 pojo 类添加属性集合:
一个商品会有一些属性,现在需要将查询出的商品属性添加到商品对象中,首先需要在原商品 pojo 类的基础上中添加属性的集合:
/** * 属性集合 */ private List<TShopAttribute> attributes;</span><span style="color: rgba(0, 128, 0, 1)">/**</span><span style="color: rgba(0, 128, 0, 1)"> * 获得属性集合 </span><span style="color: rgba(0, 128, 0, 1)">*/</span> <span style="color: rgba(0, 0, 255, 1)">public</span> List<TShopAttribute><span style="color: rgba(0, 0, 0, 1)"> getAttributes() { </span><span style="color: rgba(0, 0, 255, 1)">return</span><span style="color: rgba(0, 0, 0, 1)"> attributes; } </span><span style="color: rgba(0, 128, 0, 1)">/**</span><span style="color: rgba(0, 128, 0, 1)"> * 设置属性集合 * </span><span style="color: rgba(128, 128, 128, 1)">@param</span><span style="color: rgba(0, 128, 0, 1)"> attributes </span><span style="color: rgba(0, 128, 0, 1)">*/</span> <span style="color: rgba(0, 0, 255, 1)">public</span> <span style="color: rgba(0, 0, 255, 1)">void</span> setAttributes(List<TShopAttribute><span style="color: rgba(0, 0, 0, 1)"> attributes) { </span><span style="color: rgba(0, 0, 255, 1)">this</span>.attributes =<span style="color: rgba(0, 0, 0, 1)"> attributes; }</span></pre>
将 Collection 标签添加到 resultMap 中,这里有两种方式:
1、嵌套结果:
对应的 resultMap:
<resultMap id="BasePlusResultMap" type="com.meikai.shop.entity.TShopSku"> <id column="ID" jdbcType="BIGINT" property="id" /> <result column="SKU_NAME" jdbcType="VARCHAR" property="skuName" /> <result column="CATEGORY_ID" jdbcType="BIGINT" property="categoryId" /> <collection property="attributes" ofType="com.meikai.shop.entity.TShopAttribute" > <id column="AttributeID" jdbcType="BIGINT" property="id" /> <result column="attribute_NAME" jdbcType="VARCHAR" property="attributeName" /> </collection> </resultMap>
查询语句:
<select id="getById" resultMap="basePlusResultMap"> select s.ID,s.SKU_NAME,s.CATEGORY_ID,a.ID,a.ATTRIBUTE_NAME from t_shop_sku s,t_shop_attribute a where s.ID =a.SKU_ID and s.ID = #{id,jdbcType =BIGINT}; </select>
2、关联的嵌套查询(在 collection 中添加 select 属性):
商品结果集映射 resultMap:
<resultMap id="BasePlusResultMap" type="com.meikai.shop.entity.TShopSku"> <id column="ID" jdbcType="BIGINT" property="id" /> <result column="SKU_NAME" jdbcType="VARCHAR" property="skuName" /> <result column="CATEGORY_ID" jdbcType="BIGINT" property="categoryId" /> <collection column="{skuId=ID}" property="attributes" ofType="com.meikai.shop.entity.TShopAttribute" select="getAttribute" > </collection> </resultMap>
collection 的 select 会执行下面的查询属性语句:
<select id="getAttribute" resultMap="AttributeResultMap"> select a.ID,s.ATTRIBUTE_NAME from t_shop_attribute a where a.ID = #{skuId,jdbcType =BIGINT}; </select>
属性结果集映射:
<resultMap id="AttributeResultMap" type="com.meikai.shop.entity.TShopAttribute"> <id column="ID" jdbcType="BIGINT" property="id" /> <result column="ATTRIBUTE_NAME" jdbcType="VARCHAR" property="attributeName" /> </resultMap>
BasePlusResultMap包含了属性查询语句的Collection
所以通过下面的查询商品语句就可获得商品以及其包含的属性集合:
<select id="getById" resultMap="BasePlusResultMap">
select s.ID,s.SKU_NAME,s.CATEGORY_ID
from t_shop_sku s
where s.ID = #{id,jdbcType =BIGINT};
</select>