溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

MyBatis傳入?yún)?shù)為L(zhǎng)ist對(duì)象的實(shí)現(xiàn)方法

發(fā)布時(shí)間:2021-03-06 10:28:23 來(lái)源:億速云 閱讀:293 作者:小新 欄目:開(kāi)發(fā)技術(shù)

這篇文章主要介紹MyBatis傳入?yún)?shù)為L(zhǎng)ist對(duì)象的實(shí)現(xiàn)方法,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!

SSM框架是JavaWeb必學(xué)的框架,雖說(shuō)基本的增刪改查很簡(jiǎn)單,但是當(dāng)面臨一些特殊情況時(shí),有時(shí)還是會(huì)顯得手足無(wú)措,此篇用來(lái)記錄一些特殊場(chǎng)景下Mybatis框架的應(yīng)用.

傳入?yún)?shù)為L(zhǎng)ist對(duì)象

1. 場(chǎng)景復(fù)現(xiàn)

首先有如下一張表:

MySQL [test]> select * from t_entry_resource;
+----+-------------+------+----------+--------+--------+---------------------+
| id | resource_id | type | title  | banner | icon | add_date      |
+----+-------------+------+----------+--------+--------+---------------------+
| 11 |     6 | 14  | 分類   | 1.jpg | 2.jpg | 2017-11-17 11:22:30 |
| 12 |     3 | 1  | 測(cè)試12  | 3.jpg | 4.jpg | 2017-11-17 11:22:30 |
| 13 |    653 | 1  | 測(cè)試34  | 5.jpg | 6.jpg | 2017-11-20 02:32:26 |
| 14 |     1 | 1  | 測(cè)試5  | 7.jpg | 8.jpg | 2017-11-20 02:32:51 |
| 15 |    3942 | 3  | 測(cè)試6  | 9.jpg | 10.jpg | 2017-11-20 02:34:27 |
+----+-------------+------+----------+--------+--------+---------------------+
5 rows in set (0.01 sec)

如果要根據(jù)resource_id和type來(lái)批量查詢記錄,該如何編寫(xiě)Mybatis語(yǔ)句?

2. 解決方案

直接貼出來(lái)解決方案如下所示:

Dao層接口:

List<EntryResource> findByRidAndType(List<EntryResource> entryResources);

XML語(yǔ)句:

<select id="findByRidAndType" resultMap="entryResource" parameterType="list">
    SELECT
    *
    FROM
    t_entry_resource a
    WHERE
<foreach collection="list" index="index" item="entryResources" open="(" close=")" separator="or">
      ( `type`=#{entryResources.type} and resource_id=#{entryResources.resourceId} )
</foreach>

</select>

該語(yǔ)句利用了mybatis的foreach動(dòng)態(tài)拼接SQL。

3. foreach屬性

屬性描述
item循環(huán)體中的具體對(duì)象。支持屬性的點(diǎn)路徑訪問(wèn),如item.age,item.info.details。具體說(shuō)明:在list和數(shù)組中是其中的對(duì)象,在map中是value。該參數(shù)為必選。
collection要做foreach的對(duì)象,作為入?yún)r(shí),List<?>對(duì)象默認(rèn)用list代替作為鍵,數(shù)組對(duì)象有array代替作為鍵,Map對(duì)象用map代替作為鍵。當(dāng)然在作為入?yún)r(shí)可以使用@Param("keyName")來(lái)設(shè)置鍵,設(shè)置keyName后,list,array,map將會(huì)失效。 除了入?yún)⑦@種情況外,還有一種作為參數(shù)對(duì)象的某個(gè)字段的時(shí)候。舉個(gè)例子:如果User有屬性List ids。入?yún)⑹荱ser對(duì)象,那么這個(gè)collection = "ids"如果User有屬性Ids ids;其中Ids是個(gè)對(duì)象,Ids有個(gè)屬性List id;入?yún)⑹荱ser對(duì)象,那么collection = "ids.id"上面只是舉例,具體collection等于什么,就看你想對(duì)那個(gè)元素做循環(huán)。該參數(shù)為必選。
separator元素之間的分隔符,例如在in()的時(shí)候,separator=","會(huì)自動(dòng)在元素中間用“,“隔開(kāi),避免手動(dòng)輸入逗號(hào)導(dǎo)致sql錯(cuò)誤,如in(1,2,)這樣。該參數(shù)可選。
openforeach代碼的開(kāi)始符號(hào),一般是(和close=")"合用。常用在in(),values()時(shí)。該參數(shù)可選。
closeforeach代碼的關(guān)閉符號(hào),一般是)和open="("合用。常用在in(),values()時(shí)。該參數(shù)可選。
index在list和數(shù)組中,index是元素的序號(hào),在map中,index是元素的key,該參數(shù)可選。

4. foreach的幾種用法

(1) select count(*) from users id in (x1,x2,x3,...)

<select id="countByUserList" resultType="int" parameterType="list">  
select count(*) from users  
 <where>  
  id in  
  <foreach item="item" collection="list" separator="," open="(" close=")" index="">  
   #{item.id, jdbcType=NUMERIC}  
  </foreach>  
 </where>  
</select>

(2) select count(*) from key_cols where col_a = ? AND col_b = ?

<select id="sel_key_cols" resultType="int">  
    select count(*) from key_cols where  
<foreach item="item" index="key" collection="map" open="" separator="AND" close="">
    ${key} = #{item}
</foreach>  
</select>

(3) select * from t_news n where n.tags like ? or n.tags like ?

<select id="selectTestForEach" parameterType="News" resultMap="NewsResultMapper">
 select * from t_news n where 
 <foreach collection="listTag" index="index" item="tag" open="" separator="or" close="">
      n.tags like '%'||#{tag}||'%'
 </foreach>
<select>

以上是“MyBatis傳入?yún)?shù)為L(zhǎng)ist對(duì)象的實(shí)現(xiàn)方法”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI