mybatis中参数为list集合时使用in查询

foreach属性介绍:

foreach主要有:item, index, collection, open, separator, close.
1、item表示集合中每一个元素进行迭代时的别名。
2、index指定一个名字,用于表示再迭代过程中,每次迭代到的位置
3、open表示该语句以什么开始
4、separator表示在每次进行迭代之间以什么符号作为分隔符。
5、close表示以什么结束
6、collection属性,该属性是必须指定的,但在不同情况下,该属性的值是不一样的,主要有以下3种情况:
	a、如果传入的是单参数且参数类型是一个List的时候,collection属性值为list。
	b、如果传入的是单参数且参数类型是一个array数组的时候,collection的属性值为array。
	c、如果传入的参数是多个的时候,我们就需要把它们封装成一个Map了,当然单参数也可以封装成map,实际上如果你在传入参数的时候,在MyBatis里面也是会把它封装成一个Map的,map的key就是参数名,所以这个时候collection属性值就是传入的List或array对象在自己封装的map里面的key。

第一种情况实例:

// 传入xml的array
List<String> idList=new ArrayList<String>();
		idList.add("1002");
		idList.add("6002");
		idList.add("3206");
// xml中sql
select * from user where id in 
<foreach collection="list" index="index" item="id" open="(" separator="," close=")">
		#{id}
</foreach>

第二种情况实例:

// 传入xml的list
int[] arr2 = {10,20,30};
// xml中sql
select * from user where id in 
<foreach collection="array" index="index" item="id" open="(" separator="," close=")">
		#{id}
</foreach>

第三种情况实例:

// list值
 static List<String> statsList(){
        List<String>  statusList = new ArrayList<String>();
        statusList.add("SUCCESS");
        statusList.add("DUE");
        statusList.add("OVER");
        return statusList;
    }
// service层
public List<LoanMerchantMemEntity> findMerchantMemBy(String merchantName, String merchantNo, String socialCreditCode, String loanNo, int offset, int limit) {
        List<LoanMerchantMemEntity> list = new ArrayList<LoanMerchantMemEntity>();
        Map<String, Object> filter = new HashMap<String, Object>();
 
        filter.put("merchantName", merchantName);
        filter.put("socialCreditCode", socialCreditCode);
        filter.put("status", statsList());
        filter.put("loanNo", loanNo);
        filter.put("offset", offset);
        filter.put("limit", limit);
        filter.put("merchantNo", merchantNo);
 
        try {
            List<LoanMerchantMemEntity> row = loanMerchantMemDao.findBy(filter);
        } catch (Exception e) {
            LOGGER.error(filter, "查询企业会员信息异常", e);
        }
        return list;
// mapper层
    <select id="findBy" resultMap="RfCustomerMemMap" parameterType="java.util.Map">
        SELECT
        <include refid="Column"/>
        FROM rfl_customer_mem a LEFT JOIN rfl_loan b ON a.member_no = b.loan_member_no
        WHERE a.member_no = #{memberNo} AND b.status IN
        <foreach collection="status" index="index" item="item" open="(" separator="," close=")">
            #{item}
        </foreach>
        <if test="name != null and name != ''">
            AND name = #{name}
        </if>
        <if test="idNumber != null and idNumber != ''">
            AND id_number = #{idNumber}
        </if>
        <if test="mobileNo != null and mobileNo != ''">
            AND mobile_no = #{mobileNo}
        </if>
        <if test="loanNo != null and loanNo != ''">
            AND loan_no = #{loanNo}
        </if>
        order by a.id DESC
        <if test="offset > -1 and rows > -1">
            limit #{offset},#{limit}
        </if>
    </select>

实践

一、问题描述

mybatis sql查询时,若遇到多个条件匹配一个字段,

sql 如:

 select * from user where id in ('23','45','34')

, 那么在 mybatis 中该如何实现呢?

二、实现思路

1、方法一: java中将满足条件的值 list 转成符合格式的 sql 字符串

2、方法二: mybatis的xml文件是基于
OGNL表达式
实现的,可以将满足条件的list直接传入到xml中,进行处理

三、java转字符串

1、 依赖jar包:
1、 依赖jar包:

commons-lang3-3.3.2.jar 

2、 java中用StringUtils.join()方法操作

  List<String> idList=new ArrayList<String>();
		idList.add("1002");
		idList.add("6002");
		idList.add("3206");
		String ids = "'"+StringUtils.join(codeList,"','")+"'";  

3、 xml中如下:

select * from user where id in ( ${ids} )  

四、xml 对list进行遍历

1、假设满足条件list 如下:

 List<String> idList=new ArrayList<String>();
		idList.add("1002");
		idList.add("6002");
		idList.add("3206");

2、mybatis xml 中直接处理 list数据

select * from user where id in 
<foreach collection="idList" index="index" item="id" open="(" separator="," close=")">
		#{id}
foreach>

foreach属性介绍:https://blog.csdn.net/aiyawalie/article/details/52954138

实践转载:https://thinkcode.blog.csdn.net/article/details/79277788?spm=1001.2101.3001.6661.1&utm_medium=distribute.pc_relevant_t0.none-task-blog-2%7Edefault%7ECTRLIST%7Edefault-1.no_search_link&depth_1-utm_source=distribute.pc_relevant_t0.none-task-blog-2%7Edefault%7ECTRLIST%7Edefault-1.no_search_link

你可能感兴趣的:(java,后端,list,java,sql,xml)