1. 程式人生 > >mybatis mapper對映檔案 標籤

mybatis mapper對映檔案 標籤

mybatis mapper對映檔案 < foreach >標籤

collection:遍歷的集合引數名稱
open:遍歷開始前的符號
separator:每個成員之間的分隔符
close:遍歷結束後的結尾符號
index:表示集合當前遍歷到的下標,通過#{index}獲取當前下標
item:用來存放集合當前元素的值,通過#{item名稱}獲取當前值

<select id = "getABC" requestType = "String">
	select a from table where b in
	<foreach collection="list" open="(" separator="," close=")" index="index" item="item">
            #{item}
     </foreach>
 <select>