欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

MyBatis传入集合 list 数组 map参数的写法

程序员文章站 2024-03-12 23:48:32
foreach的主要用在构建in条件中,它可以在sql语句中进行迭代一个集合。foreach元素的属性主要有item,index,collection,open,separ...

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

如果传入的是单参数且参数类型是一个array数组的时候,collection的属性值为array .

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

下面我们通过代码实践:

数据表:

采用oracle的hr.employees表

        实体:employees

public class employees {
  private integer employeeid;
  private string firstname;
  private string lastname;
  private string email;
  private string phonenumber;
  private date hiredate;
  private string jobid;
  private bigdecimal salary;
  private bigdecimal commissionpct;
  private integer managerid;
  private short departmentid;
} 

映射文件:

 

  <!--list:forech中的collection属性类型是list,collection的值必须是:list,item的值可以随意,dao接口中参数名字随意 -->
  <select id="getemployeeslistparams" resulttype="employees">
    select *
    from employees e
    where e.employee_id in
    <foreach collection="list" item="employeeid" index="index"
      open="(" close=")" separator=",">
      #{employeeid}
    </foreach>
  </select>
  <!--array:forech中的collection属性类型是array,collection的值必须是:list,item的值可以随意,dao接口中参数名字随意 -->
  <select id="getemployeesarrayparams" resulttype="employees">
    select *
    from employees e
    where e.employee_id in
    <foreach collection="array" item="employeeid" index="index"
      open="(" close=")" separator=",">
      #{employeeid}
    </foreach>
  </select>

  <!--map:不单单forech中的collection属性是map.key,其它所有属性都是map.key,比如下面的departmentid -->
  <select id="getemployeesmapparams" resulttype="employees">
    select *
    from employees e
    <where>
      <if test="departmentid!=null and departmentid!=''">
        e.department_id=#{departmentid}
      </if>
      <if test="employeeidsarray!=null and employeeidsarray.length!=0">
        and e.employee_id in
        <foreach collection="employeeidsarray" item="employeeid"
          index="index" open="(" close=")" separator=",">
          #{employeeid}
        </foreach>
      </if>
    </where>
  </select>

mapper类:

public interface employeesmapper { 
  list<employees> getemployeeslistparams(list<string> employeeids);
  list<employees> getemployeesarrayparams(string[] employeeids);
  list<employees> getemployeesmapparams(map<string,object> params);
}

以上所述是小编给大家介绍的mybatis传入集合 list 数组 map参数的写法的全部叙述,希望对大家有所帮助!