MyBatis中mapper.xml中foreach的使用
Author:kak
MySql的动态语句foreach,当传入参数为数组或者集合时需要通过foreach标签进行遍历,其主要是在in条件中,可以在SQL语句中迭代一个集合;
综述
<foreach collection="dto.orderStatusList" item="item" index="index" open="(" close=")" separator=",">
#{item}
</foreach>
collection:要做foreach的对象,作为入参时,List<?>对象默认用list代替作为键,数组对象有array代替作为键,Map对象用map代替作为键,该参数必选;
item:循环体中的具体对象,支持属性的点路径访问,该参数必选;
index:在list和数组中,index是元素的序号,在map中,index是元素的key,该参数可选;
- open:foreach代码的开始符号,一般是(和close=")"合用,该参数可选;
- close:foreach代码的关闭符号,一般是)和open="("合用,该参数可选;
- separator:元素之间的分隔符,例如在in()的时候,separator=","会自动在元素中间用“,“隔开,避免手动输入逗号导致sql错误,该参数可选;
情况一
如果传入的是单参数且参数类型是一个List的时候,collection属性值为list
/**
* Mapper中传入
* @param orderStatusList
* @return
*/
public List<OrderInfoVO> findList(List<String> orderStatusList);
<select id="findList" resultType="OrderInfoVO">
select * from order_info where 1=1 and t.order_status in
<foreach collection="list" item="item" index="index" open="(" close=")" separator=",">
#{item}
</foreach>
</select>
情况二
如果传入的是单参数且参数类型是一个array数组的时候,collection的属性值为array
/**
* 传入数组
*/
public List<OrderInfoVO> findList(int[] orderId);
<select id="findList" resultType="OrderInfoVO">
select * from order_info where 1=1 and t.id in
<foreach collection="array" index="index" item="item" open="(" separator="," close=")">
#{item}
</foreach>
</select>
情况三
如果传入的参数是多个的时候,我们就需要把它们封装成一个Map了,当然单参数也可以封装成map,map的key就是参数名,因此collection属性值就是传入的List或array对象在自己封装的map里面的key
/**
* 传入Map
*/
public List<OrderInfoVO> findList(Map<String, Object> orderInfo);
<select id="findList" resultType="OrderInfoVO">
select * from order_info where 1=1 and orderInfo like "%"#{orderInfo}"%" and t.orderServiceType in
<foreach collection="orderId" index="index" item="item" open="(" separator="," close=")">
#{item}
</foreach>
</select>