mybatis 根據多個id查詢數據 foreach標簽


  1. //根據設備多個id獲取設備信息
  2. public List<Devices> getDevicesAll(@Param("devicesIds") String[] devicesIds);
  3.  
  4.  
  5.  
  6. < select id="getDevicesAll" resultMap="BaseResultMap">
  7. select
  8. <include refid= "Base_Column_List"/>
  9. from sys_devices d
  10. where
  11. d.devices_id in
  12. < foreach item="devices_id" index="index" collection="devicesIds"
  13. open= "(" separator="," close=")">
  14. #{devices_id}
  15. </ foreach>
  16. <!-- < where>
  17. < if test="devicesIds != null">
  18. d.devices_id in
  19. < foreach item="item" index="index" collection="array"
  20. open= "(" separator="," close=")">
  21. #{item}
  22. </ foreach>
  23. </ if>
  24. </ where> -->
  25. </ select>

用param標簽  

  1. //根據主鍵ID刪除一條記錄
  2. int deleteCategory( String[] categoryId);
  3.  
  4.  
  5. <!-- 根據主鍵刪除一條記錄 -->
  6. <delete id="deleteCategory">
  7. delete from category
  8. where Category_ID in
  9. <foreach item="item" index="index" collection="array" open="(" separator="," close=")">
  10. #{item}
  11. </foreach>
  12. </delete>

這兩種方式

 

下面是其他的方式

在MyBatis傳入List參數時,MyBatis報錯:nested exception is org.apache.ibatis.binding.BindingException: Parameter 'idList' not found. Available parameters are [collection, list]","request_id":"fe7f7f815c1995a6015c1a22c2540234"}

以下是相關代碼:

Mapper.java--

mapper.xml

 

解決方案:

修改Mapper.java:

修改mapper.xml

 

 

原因:

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.
 


免責聲明!

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



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