Mybatis傳入引數為List物件

SunlightDen發表於2021-01-02

SSM框架是JavaWeb必學的框架,雖說是基本的增刪改查的操作,但是面臨一些特殊情況的時候,又是還是會顯得手足無措,此篇用來記錄一下一寫特殊場景下的Mybatis框架的應用

1、傳入引數為List物件

1.場景復現

首先有如下一張表

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    | 測試12   | 3.jpg  | 4.jpg  | 2017-11-17 11:22:30 |
| 13 |        653  | 1    | 測試34   | 5.jpg  | 6.jpg  | 2017-11-20 02:32:26 |
| 14 |          1  | 1    | 測試5    | 7.jpg  | 8.jpg  | 2017-11-20 02:32:51 |
| 15 |        3942 | 3    | 測試6    | 9.jpg  | 10.jpg | 2017-11-20 02:34:27 |
+----+-------------+------+----------+--------+--------+---------------------+
5 rows in set (0.01 sec)

如果要根據resource_id和type來批量查詢記錄,該如何編寫Mybaits語句呢?

2.解決方案

直接貼出來解決的方案如下:

Dao層介面:

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

XML語句:

<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>

該語句利用了mybatis的foreach動態拼接SQL。

3.foreach屬性

屬性描述
item迴圈體中的具體物件。支援屬性的點路徑訪問,如item.age,item.info.details。具體說明:在list和陣列中是其中的物件,在map中是value。該引數為必選。
collection要做foreach的物件,作為入參時,List<?>物件預設用list代替作為鍵,陣列物件有array代替作為鍵,Map物件用map代替作為鍵。當然在作為入參時可以使用@Param(“keyName”)來設定鍵,設定keyName後,list,array,map將會失效。 除了入參這種情況外,還有一種作為引數物件的某個欄位的時候。舉個例子:如果User有屬性List ids。入參是User物件,那麼這個collection = "ids"如果User有屬性Ids ids;其中Ids是個物件,Ids有個屬性List id;入參是User物件,那麼collection = "ids.id"上面只是舉例,具體collection等於什麼,就看你想對那個元素做迴圈。該引數為必選。
separator元素之間的分隔符,例如在in()的時候,separator=","會自動在元素中間用“,“隔開,避免手動輸入逗號導致sql錯誤,如in(1,2,)這樣。該引數可選。
openforeach程式碼的開始符號,一般是(和close=")"合用。常用在in(),values()時。該引數可選。
closeforeach程式碼的關閉符號,一般是)和open="("合用。常用在in(),values()時。該引數可選。
index在list和陣列中,index是元素的序號,在map中,index是元素的key,該引數可選。

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傳入引數為List物件

相關文章