foreach的主要用在構建in條件中,它可以在SQL語句中進行迭代一個集合。
foreach元素的屬性主要有 item,index,collection,open,separator,close。
item表示集合中每一個元素進行迭代時的別名,
index指 定一個名字,用於表示在迭代過程中,每次迭代到的位置,
open表示該語句以什么開始,
separator表示在每次進行迭代之間以什么符號作為分隔 符,
close表示以什么結束。
在使用foreach的時候最關鍵的也是最容易出錯的就是collection屬性,該屬性是必須指定的,但是在不同情況 下,該屬性的值是不一樣的,主要有一下3種情況:
1. 如果傳入的是單參數且參數類型是一個List的時候,collection屬性值為list
2. 如果傳入的是單參數且參數類型是一個array數組的時候,collection的屬性值為array
3. 如果傳入的參數是多個的時候,我們就需要把它們封裝成一個Map了,當然單參數也可
以封裝成map,實際上如果你在傳入參數的時候,在breast里面也是會把它封裝成一個Map的,map的key就是參數名,所以這個時候collection屬性值就是傳入的List或array對象在自己封裝的map里面的key 下面分別來看看上述三種情況的示例代碼:
1一個參數的情況
<select id="select" parameterType="java.util.List" resultType="User"> select * from user where id in <foreach collection="list" index="index" item="item" open="(" separator="," close=")"> #{item} </foreach> </select>
2.多個參數的情況 :
傳入多個參數時的foreach collection填數組名 集合名 用$符號接收參數
<select id="getCurrencyLevelDistribution" resultType="CurrencyLevelDistribution"> SELECT playerLevel, sum(price) as totalPrice, count(roleId) as num FROM charge WHERE state=1 <if test="serverIdArray!=null"> and serverId in <foreach collection="serverIdArray" index="index" item="serverId" open="(" separator="," close=")"> ${serverId} </foreach> </if> <if test="channelIdArray!=null"> and channelId in <foreach collection="channelIdArray" index="index" item="channelId" open="(" separator="," close=")"> ${channelId} </foreach> </if> GROUP BY playerLevel </select>