MyBatis的返回参数类型

本文详细解析了MyBatis中resultMap与resultType的区别及应用场景,并通过具体示例说明了如何使用这两种返回参数类型来处理查询结果。

https://blog.youkuaiyun.com/u010235716/article/details/51698787

                    版权声明:本文为博主原创文章,请放心使用                        https://blog.youkuaiyun.com/u010235716/article/details/51698787                    </div>
                                                <link rel="stylesheet" href="https://csdnimg.cn/release/phoenix/template/css/ck_htmledit_views-cd6c485e8b.css">
                                    <link rel="stylesheet" href="https://csdnimg.cn/release/phoenix/template/css/ck_htmledit_views-cd6c485e8b.css">
            <div class="htmledit_views" id="content_views">

MyBatis的返回参数类型分两种

1.  对应的分类为:

1.1. resultMap :

1.2. resultType :


2 . 对应返回值类型:

2.1. resultMap : 结果集[对象等]

2.2. resultType : Integer,String ,Long ,class

3. 注意点:

在MyBatis进行查询映射时,其实查询出来的每一个属性都是放在一个对应的Map里面的,其中键是属性名,值则是其对应的值。
     
3.1  当提供的返回类型属性是resultType时,MyBatis会将Map里面的键值对取出赋给resultType所指定的对象对应的属性。所以其实MyBatis的每一个查询映射的返回类型都是ResultMap,只是当提供的返回类型属性是resultType的时
候,MyBatis对自动的给把对应的值赋给resultType所指定对象的属性。
     
3.2  当提供的返回类型是resultMap时,因为Map不能很好表示领域模型,就需要自己再进一步的把它转化为对应的对象,这常常在复杂查询中很有作用。

4.案例

4.1:resultMap案例


 
 
  1. <select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.Long" >
  2. select
  3. <include refid="Base_Column_List" />
  4. from common_car_make
  5. where id = #{id,jdbcType=BIGINT}
  6. </select>
4.2 resultType--Long案例


 
 
  1. <select id="queryCarTypeByModelIdCount" resultType="java.lang.Long" parameterType="java.util.Map">
  2. select count(*) from common_car_type cm
  3. where 1=1
  4. <if test="carModelId != null">
  5. and cm.car_model_id = #{carModelId,jdbcType=DECIMAL}
  6. </if>
  7. </select>
4.3 resultType--Integer案例


 
 
  1. <select id="queryCategoryBrandCount" resultType="java.lang.Integer" parameterType="java.util.HashMap" >
  2. select count(1)
  3. from common_category_brand
  4. where 1=1
  5. <if test="categoryId != null" >
  6. and category_id = #{categoryId,jdbcType=BIGINT}
  7. </if>
  8. <if test="brandId != null" >
  9. and brand_id = #{brandId,jdbcType=BIGINT}
  10. </if>
  11. </select>

4.4 resultType--class案例:查询结果对应类中的属性值


 
 
  1. <select id="selectCommonBrand" resultType="com.epeit.api.model.CommonBrandPo" parameterType="java.lang.Long" >
  2. select
  3. id, brand_name brandName, brand_type brandType, icon, delete_flag deleteFlag
  4. from common_brand
  5. where id = #{id,jdbcType=BIGINT}
  6. </select>







评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

hello_world!

你的鼓励将是我创作的最大动力!

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值