一区二区三区在线-一区二区三区亚洲视频-一区二区三区亚洲-一区二区三区午夜-一区二区三区四区在线视频-一区二区三区四区在线免费观看

服務器之家:專注于服務器技術及軟件下載分享
分類導航

PHP教程|ASP.NET教程|Java教程|ASP教程|編程技術|正則表達式|C/C++|IOS|C#|Swift|Android|VB|R語言|JavaScript|易語言|vb.net|

服務器之家 - 編程語言 - Java教程 - MyBatis中傳入參數parameterType類型詳解

MyBatis中傳入參數parameterType類型詳解

2021-04-24 11:51袁義銳 Java教程

這篇文章主要給大家介紹了關于MyBatis中傳入參數parameterType類型的相關資料,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友可以參考下

前言

mybatis的mapper文件中的select、insert、update、delete元素中有一個parametertype屬性,用于對應的mapper接口方法接受的參數類型。本文主要給大家介紹了關于mybatis傳入參數parametertype類型的相關內容,分享出來供大家參考學習,下面話不多說了,來一起看看詳細的介紹吧。

1. mybatis的傳入參數parametertype類型分兩種

   1. 1. 基本數據類型:int,string,long,date;

   1. 2. 復雜數據類型:類和map

2. 如何獲取參數中的值:

   2.1  基本數據類型:#{參數} 獲取參數中的值

   2.2  復雜數據類型:#{屬性名}  ,map中則是#{key}

3.案例:

 3.1 基本數據類型案例

?
1
2
3
4
5
6
7
8
9
<sql id="base_column_list" >
 id, car_dept_name, car_maker_name, icon,car_maker_py,hot_type
 </sql>
 <select id="selectbyprimarykey" resultmap="baseresultmap" parametertype="java.lang.long" >
 select
 <include refid="base_column_list" />
 from common_car_make
 where id = #{id,jdbctype=bigint}
 </select>

 3.2 復雜類型--map類型    

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<select id="querycarmakerlist" resultmap="baseresultmap" parametertype="java.util.map">
  select
  <include refid="base_column_list" />
  from common_car_make cm
  where 1=1
  <if test="id != null">
   and cm.id = #{id,jdbctype=decimal}
  </if>
  <if test="cardeptname != null">
   and cm.car_dept_name = #{cardeptname,jdbctype=varchar}
  </if>
  <if test="carmakername != null">
   and cm.car_maker_name = #{carmakername,jdbctype=varchar}
  </if>
  <if test="hottype != null" >
   and cm.hot_type = #{hottype,jdbctype=bigint}
  </if>
  order by cm.id
 </select>

  3.3 復雜類型--類類型

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<update id="updatebyprimarykeyselective" parametertype="com.epeit.api.model.commoncarmake" >
 update common_car_make
 <set >
  <if test="cardeptname != null" >
  car_dept_name = #{cardeptname,jdbctype=varchar},
  </if>
  <if test="carmakername != null" >
  car_maker_name = #{carmakername,jdbctype=varchar},
  </if>
  <if test="icon != null" >
  icon = #{icon,jdbctype=varchar},
  </if>
  <if test="carmakerpy != null" >
   car_maker_py = #{carmakerpy,jdbctype=varchar},
  </if>
  <if test="hottype != null" >
   hot_type = #{hottype,jdbctype=bigint},
  </if>
 </set>
 where id = #{id,jdbctype=bigint}
 </update>

 3.4 復雜類型--map中包含數組的情況

?
1
2
3
4
5
6
7
8
9
10
11
12
<select id="selectproorderbyorderid" resulttype="com.epeit.api.model.proorder" parametertype="java.util.hashmap" >
  select sum(pro_order_num) proordernum,product_id productid,promotion_id promotionid
  from pro_order
  where 1=1
  <if test="orderids != null">
   and
   <foreach collection="orderids" item="item" open="order_id in(" separator="," close=")">
    #{item,jdbctype=bigint}
   </foreach>
  </if>
  group by product_id,promotion_id
 </select>

4.注解@param:這個比較特殊,但是很好理解

案例一:

@param(value="startdate") string startdate :注解單一屬性;這個類似于將參數重命名了一次

如調用mybatis的*mapper.xml中配置sql語句(dao層)

?
1
list<string> selectidbysorttime(@param(value="startdate")string startdate);

則xml中的語句,需要配合@param括號中的內容:參數為startdate

?
1
2
3
4
<select id="selectidbysorttime" resulttype="java.lang.string" parametertype="java.lang.string">
 select distinct ajlcid from ebd_fh_ajlc where sorttime >= to_date(#{startdate,jdbctype=varchar},'yyyy-mm-dd') and created_date=updated_date
 and keyvalue in (select distinct companyname from ebd_fh_company_list where isupdate='0')
 </select>

案例二:

注解javabean,@param(value="datevo") datevo datevo;則需要注意編寫的參數

?
1
list<string> selectids(@param(value="datevo")datevo datevo);

對應的mapping文件

?
1
2
3
4
<select id="selectids" resulttype="java.lang.string" parametertype="com.api.entity.datevo">
 select distinct ajlcid from ebd_fh_ajlc where sorttime >= to_date(#  {datevo.startdate,jdbctype=varchar},'yyyy-mm-dd') and created_date=updated_date
 and keyvalue in (select distinct companyname from ebd_fh_company_list where isupdate='0')
 </select>

至于要說優缺點的話,看個人喜好

總結

以上就是這篇文章的全部內容了,希望本文的內容對大家的學習或者工作具有一定的參考學習價值,如果有疑問大家可以留言交流,謝謝大家對服務器之家的支持。

原文鏈接:https://blog.csdn.net/u010235716/article/details/51698422

延伸 · 閱讀

精彩推薦
主站蜘蛛池模板: 青青草视频破解版 | 丝瓜黄瓜茄子西红柿秋葵榴莲 | 桃乃木香在线 | 国产精品资源站 | 牛牛影院成人免费网页 | 日本三级香港三级久久99 | 欧美日韩高清一区 | 欧美大片一区二区三区 | 欧美日韩综合网在线观看 | 精品国产一区二区三区国产馆 | 韩日视频在线 | 精品一区二区三区五区六区七区 | 1024视频色版在线网站 | ak福利影院 | 果冻传媒 天美 麻豆 | 亚洲天堂中文 | 人配人种视频xxxx | 外女思春台湾三级 | 亚洲日韩精品欧美一区二区一 | 国产网站视频 | 处女摘花视频 | 亚洲成人国产精品 | 97青草香蕉依人在线播放 | 操破苍穹在线 | 草草视频免费看 | 色综合亚洲天天综合网站 | 91精品国产综合久 | 国产精品久久久久毛片 | 日产免费自线一二区 | 18未年禁止免费观看 | 国产日韩欧美成人 | 亚洲欧美成人综合在线 | 精品一区二区三区波多野结衣 | 色综合合久久天天综合绕视看 | 国产午夜精品久久久久 | 亚洲视频在线观看不卡 | 精品无人区乱码1区2区3区免费 | 大学生宿舍飞机china free | 亚洲人成高清毛片 | 亚洲国产精品久久久久久 | 青草青草伊人精品视频 |