MyBatis傳入參數為list、數組、map寫法


1.foreach簡單介紹:

foreach的主要用在構建in條件中,它可以在SQL語句中進行迭代一個集合。

foreach元素的屬性主要有item,index,collection,open,separator,close。

item表示集合中每一個元素進行迭代時的別名,

index指定一個名字,用於表示在迭代過程中,每次迭代到的位置,

open表示該語句以什么開始,

separator表示在每次進行迭代之間以什么符號作為分隔符,

close表示以什么結束,

collection屬性是在使用foreach的時候最關鍵的也是最容易出錯的,該屬性是必須指定的,但是在不同情況下,該屬性的值是不一樣的,主要有一下3種情況: 

(1)如果傳入的是單參數且參數類型是一個List的時候,collection屬性值為list .

(2)如果傳入的是單參數且參數類型是一個array數組的時候,collection的屬性值為array .

(3)如果傳入的參數是多個的時候,我們就需要把它們封裝成一個Map了,當然單參數也可以封裝成map,實際上如果你在傳入參數的時候,在MyBatis里面也是會把它封裝成一個Map的,map的key就是參數名,所以這個時候collection屬性值就是傳入的List或array對象在自己封裝的map里面的key.

(4)如果傳入的是單個參數且參數類型為List的時候,使用@Param()注釋參數名字,那么collection屬性值為參數名字。例:[2]

Dao:

List<User> findListByIds(@Param("idList")List<String> idList);

XML

<select id="findListByIds" parameterType="java.util.List" resultType="User">
    select * from t_user where id in
    <foreach item="item" index="index" collection="idList" open="(" separator="," close=")">
        #{item}
    </foreach>
</select>


2.實踐-實體類

[java]  view plain  copy
  1. public class Employees {  
  2.     private Integer employeeId;  
  3.     private String firstName;  
  4.     private String lastName;  
  5.     private String email;  
  6.     private String phoneNumber;  
  7.     private Date hireDate;  
  8.     private String jobId;  
  9.     private BigDecimal salary;  
  10.     private BigDecimal commissionPct;  
  11.     private Integer managerId;  
  12.     private Short departmentId;  
  13. }    

3.實踐-XML

[html]  view plain  copy
  1. <!--List:forech中的collection屬性類型是List,collection的值必須是:list,item的值可以隨意,Dao接口中參數名字隨意 -->  
  2.     <select id="getEmployeesListParams" resultType="Employees">  
  3.         select *  
  4.         from EMPLOYEES e  
  5.         where e.EMPLOYEE_ID in  
  6.         <foreach collection="list" item="employeeId" index="index"  
  7.             open="(" close=")" separator=",">  
  8.             #{employeeId}  
  9.         </foreach>  
  10.     </select>  
  11.   
  12.     <!--Array:forech中的collection屬性類型是array,collection的值必須是:list,item的值可以隨意,Dao接口中參數名字隨意 -->  
  13.     <select id="getEmployeesArrayParams" resultType="Employees">  
  14.         select *  
  15.         from EMPLOYEES e  
  16.         where e.EMPLOYEE_ID in  
  17.         <foreach collection="array" item="employeeId" index="index"  
  18.             open="(" close=")" separator=",">  
  19.             #{employeeId}  
  20.         </foreach>  
  21.     </select>  
  22.   
  23.     <!--Map:不單單forech中的collection屬性是map.key,其它所有屬性都是map.key,比如下面的departmentId -->  
  24.     <select id="getEmployeesMapParams" resultType="Employees">  
  25.         select *  
  26.         from EMPLOYEES e  
  27.         <where>  
  28.             <if test="departmentId!=null and departmentId!=''">  
  29.                 e.DEPARTMENT_ID=#{departmentId}  
  30.             </if>  
  31.             <if test="employeeIdsArray!=null and employeeIdsArray.length!=0">  
  32.                 AND e.EMPLOYEE_ID in  
  33.                 <foreach collection="employeeIdsArray" item="employeeId"  
  34.                     index="index" open="(" close=")" separator=",">  
  35.                     #{employeeId}  
  36.                 </foreach>  
  37.             </if>  
  38.         </where>  
  39.     </select>  

4.實踐-Mapper

[java]  view plain  copy
  1. public interface EmployeesMapper {   
  2.   
  3.     List<Employees> getEmployeesListParams(List<String> employeeIds);  
  4.   
  5.     List<Employees> getEmployeesArrayParams(String[] employeeIds);  
  6.   
  7.     List<Employees> getEmployeesMapParams(Map<String,Object> params);  
  8. }  

原文出處:
[1] zhangqifeng92, MyBatis傳入參數為list、數組、map寫法, https://blog.csdn.net/s592652578/article/details/52871884
[2] 實踐經驗,親測可用


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM