传参为逗号分隔的字符串情形进行in条件查询
在业务变更需支持多条件查询,在改动最小的情况下,实现方式就是只改mapper.xml,这时,可让前端逗号分隔传参
后端只需要做如下调整
<if test="paramXXX!= null and paramXXX!= ''">
and t.paramXXX in
<foreach item="item" index="index" collection="paramXXX.split(',')" open="(" separator="," close=")">
#{item}
</foreach>
</if>
根据逗号分隔的id查询
select id,name from user where
<if test="ids!=null and ids!=''">
id in
<foreach collection="ids.split(',')" item="item" index="index" open="(" separator="," close=")">
#{item}
</foreach>
</if>
以上为个人经验,希望能给大家一个参考,也希望大家多多支持编程网。