博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
MyBatis之返回类型
阅读量:6128 次
发布时间:2019-06-21

本文共 1634 字,大约阅读时间需要 5 分钟。

hot3.png

MyBatis的返回参数类型分两种

1. 对应的分类为:

1.1.resultMap:

1.2.resultType:

2 .对应返回值类型:

2.1.resultMap:结果集

2.2.resultType:int,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--int案例

  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>  

转载于:https://my.oschina.net/inchlifc/blog/1583335

你可能感兴趣的文章
Docker - 创建支持SSH服务的容器镜像
查看>>
[TC13761]Mutalisk
查看>>
三级菜单
查看>>
Data Wrangling文摘:Non-tidy-data
查看>>
加解密算法、消息摘要、消息认证技术、数字签名与公钥证书
查看>>
while()
查看>>
常用限制input的方法
查看>>
Ext Js简单事件处理和对象作用域
查看>>
IIS7下使用urlrewriter.dll配置
查看>>
12.通过微信小程序端访问企查查(采集工商信息)
查看>>
WinXp 开机登录密码
查看>>
POJ 1001 Exponentiation
查看>>
HDU 4377 Sub Sequence[串构造]
查看>>
云时代架构阅读笔记之四
查看>>
WEB请求处理一:浏览器请求发起处理
查看>>
Lua学习笔记(8): 元表
查看>>
PHP经典算法题
查看>>
LeetCode 404 Sum of Left Leaves
查看>>
醋泡大蒜有什么功效
查看>>
hdu 5115(2014北京—dp)
查看>>