Mybatis中sql拼接in查询

MyBatis数据库sql语句中in一个动态数组

foreach的主要用在构建in条件中,它可以在SQL语句中进行迭代一个集合。foreach元素的属性主要有item,index,collection,open,separator,close。item表示集合中每一个元素进行迭代时的别名,index指定一个名字,用于表示在迭代过程中,每次迭代到的位置,open表示该语句以什么开始,separator表示在每次进行迭代之间以什么符号作为分隔符,close表示以什么结束,在使用foreach的时候最关键的也是最容易出错的就是collection属性,该属性是必须指定的,但是在不同情况下,该属性的值是不一样的,主要有一下3种情况:

  1. 如果传入的是单参数且参数类型是一个List的时候,collection属性值为list
  2. 如果传入的是单参数且参数类型是一个array数组的时候,collection的属性值为array
  3. 如果传入的参数是多个的时候,我们就需要把它们封装成一个Map了,当然单参数也可以封装成map,实际上如果你在传入参数的时候,在MyBatis里面也是会把它封装成一个Map的,map的key就是参数名,所以这个时候collection属性值就是传入的List或array对象在自己封装的map里面的key

下面分别来看看上述三种情况的示例代码:

1.单参数List的类型:

[html] view plain copy

  1.  style="font-size:18px;"> id="dynamicForeachTest" resultType="Blog">  
  2.     select * from t_blog where id in  
  3.      collection="list" index="index" item="item" open="(" separator="," close=")">  
  4.         #{item}  
  5.       
  6.   

上述collection的值为list,对应的Mapper是这样的

2.单参数array数组的类型:

[html] view plain copy

  1.  style="font-size: 14px;">    style="font-size:18px;"> id="dynamicForeach2Test" resultType="Blog">  
  2.         select * from t_blog where id in  
  3.          collection="array" index="index" item="item" open="(" separator="," close=")">  
  4.             #{item}  
  5.           
  6.      style="font-size: 14px;">  
  7.   

3.自己把参数封装成Map的类型

xml代码

[html] view plain copy

  1.  style="font-size: 14px;">    style="font-size:18px;"> id="dynamicForeach3Test" resultType="Blog">  
  2.         select * from t_blog where title like "%"#{title}"%" and id in  
  3.          collection="ids" index="index" item="item" open="(" separator="," close=")">  
  4.             #{item}  
  5.           
  6.       

上述collection的值为ids,是传入的参数Map的key,对应的Mapper代码:

Java代码

[html] view plain copy

  1.  style="font-size:18px;">        public List dynamicForeach3Test(Map, Object> params); style="font-size: 14px;">  
  2.   

对应测试代码:

Java代码

[html] view plain copy

  1.  style="font-size: 12px;">  style="font-size:18px;">@Test  
  2.     public void dynamicForeach3Test() {  
  3.         SqlSession session = Util.getSqlSessionFactory().openSession();  
  4.         BlogMapper blogMapper = session.getMapper(BlogMapper.class);  
  5.         final List ids = new ArrayList();  
  6.         ids.add(1);  
  7.         ids.add(2);  
  8.         ids.add(3);  
  9.         ids.add(6);  
  10.         ids.add(7);  
  11.         ids.add(9);  
  12.         Map, Object> params = new HashMap, Object>();  
  13.         params.put("ids", ids);  
  14.         params.put("title", "中国");  
  15.         List blogs = blogMapper.dynamicForeach3Test(params);  
  16.         for (Blog blog : blogs)  
  17.             System.out.println(blog);  
  18.         session.close();  
  19.     } style="font-size: 12px;">  
  20.   

mybatis 使用foreach时出现"The expression 'list' evaluated to a null value"问题

myBatis 使用foreach 出现The expression ‘list’ evaluate to a null value”问题

 

 

动态删除购物车中的商品

错误的写法:

 
  delete from ecs_cart where  user_id=#{userId}
  and  goods_id in  
     
       #{goodsIdList}  
       

 

正确的写法:

 
   delete from ecs_cart where  user_id=#{userId}
    and  goods_id in  
    collection="goodsIdList" item="goodsIdList" index="index" open="(" separator="," close=")">  
         #{goodsIdList}  
       

错误的原因在于:

"你可以传递一个 List 实例或者数组作为参数对象传给 MyBatis。当你这么做的时 候,MyBatis 会自动将它包装在一个 Map 中,用名称在作为键。List 实例将会以“list” 作为键,而数组实例将会以“array”作为键。"

你可能感兴趣的:(  ●,MyBatis)