Mybatis中的Foreach用法总结
例一:
接口:
int insertBounsExchangePay(@Param("pay") HxBonusExchangReport pay);
Mapper:
参数类型需要是List 如果接口中使用了 @Param(“pay”) 来指定参数名称,则Mapper文件中使用时collection属性就不能使用 list,必须要使用指定的名称"pay" ;
<foreach collection="pay" item="item" index="index" open="(" separator="," close=")">
#{itm,***}
</foreach>
例二:
接口:
int insertBounsExchangeGoodsTypeTablePay(List pay);
Mapper:
—参数类型需要是List 如果接口中没有使用@Param(“pay”) 来指定参数名称,则Mapper文件中使用foreach时collection属性就必须要使用 list;(只要修改前面action属性添加为pay即可获取数据)
其中itm的值需要是下面参数中的参数名
itm=aa
#{aa,xx}
<insert id="insertAuthor" useGeneratedKeys="true" keyProperty="id">
insert into Author (username, password, email, bio) values
<foreach item="item" collection="list" separator=",">
(#{item.username}, #{item.password}, #{item.email}, #{item.bio})
</foreach>
</insert>
或:
<insert id="insertAuthor" useGeneratedKeys="true" keyProperty="id">
insert into Author (username, password, email, bio) values
<foreach item="item" collection="list" separator="," open="(" separator="," close=")">
(#{item.username}, #{item.password}, #{item.email}, #{item.bio})
</foreach>
</insert>
关于open="(" 和 close=")"----: 如果foreach中的sql语句没有添加(),但是实际sql语句汇总需要(),则使用该字段后会自动添加上(); 同理,其他符号用法相同; 如果sql中已经使用了(),则就不需要再添加open="(" 和 close=")",否则会报异常:缺失右括号…
foreach
动态 SQL 的另一个常见使用场景是对集合进行遍历(尤其是在构建 IN 条件语句的时候)。比如:
<select id="selectPostIn" resultType="domain.blog.Post">
SELECT *
FROM POST P
WHERE ID in
<foreach item="item" index="index" collection="list"
open="(" separator="," close=")">
#{item}
</foreach>
</select>
foreach 元素的功能非常强大,它允许你指定一个集合,声明可以在元素体内使用的集合项(item)和索引(index)变量。它也允许你指定开头与结尾的字符串以及集合项迭代之间的分隔符。这个元素也不会错误地添加多余的分隔符,看它多智能!
提示 你可以将任何可迭代对象(如 List、Set 等)、Map 对象或者数组对象作为集合参数传递给 foreach。当使用可迭代对象或者数组时,index 是当前迭代的序号,item 的值是本次迭代获取到的元素。
当使用 Map 对象(或者 Map.Entry 对象的集合)时,index 是键,item 是值。
至此,我们已经完成了与 XML 配置及映射文件相关的讨论。下一章将详细探讨 Java API,以便你能充分利用已经创建的映射配置。