程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> 關於JAVA >> MyBatis傳入聚集 list 數組 map參數的寫法

MyBatis傳入聚集 list 數組 map參數的寫法

編輯:關於JAVA

MyBatis傳入聚集 list 數組 map參數的寫法。本站提示廣大學習愛好者:(MyBatis傳入聚集 list 數組 map參數的寫法)文章只能為提供參考,不一定能成為您想要的結果。以下是MyBatis傳入聚集 list 數組 map參數的寫法正文


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參數的寫法的全體論述,願望對年夜家有所贊助!

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved