MyBatis中mapper.xml中foreach的使用

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> 
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Willing卡卡

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值