MyBatis傳入參數為List對象的實現
SSM框架是JavaWeb必學的框架,雖說基本的增刪改查很簡單,但是當面臨一些特殊情況時,有時還是會顯得手足無措,此篇用來記錄一些特殊場景下Mybatis框架的應用.
傳入參數為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來批量查詢記錄,該如何編寫Mybatis語句?
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,)這樣。該參數可選。 |
open | foreach代碼的開始符號,一般是(和close=”)”合用。常用在in(),values()時。該參數可選。 |
close | foreach代碼的關閉符號,一般是)和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>
5. 參考文獻
https://www.cnblogs.com/dflmg/p/6398033.html
http://www.mybatis.org/mybatis-3/zh/dynamic-sql.html
到此這篇關於MyBatis傳入參數為List對象的實現的文章就介紹到這瞭,更多相關MyBatis傳入參數為List對象內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!
推薦閱讀:
- mybatis update更新字段的使用操作
- mybatis in查詢傳入String方式
- mybatis條件語句中帶數組參數的處理
- MyBatis中foreach標簽的collection屬性的取值方式
- MyBatis批量插入/修改/刪除MySql數據