詳解Mybatis 傳遞參數類型為List的取值問題
問題描述:
參數傳遞為List時:
當傳遞一個 List 實例或者數組作為參數對象傳給 Mybatis。此時,Mybatis 會自動將它包裝在一個 Map 中,用名稱在作為鍵。List 實例將會以“list” 作為鍵,而數組實例將會以“array”作為鍵。所以,當我們傳遞的是一個List集合時,mybatis會自動把我們的list集合包裝成以list為Key值的map。
DAO 層:
List<User> selectUserByIDs( List IDs);
XML文件:
<select parameterType='java.util.List' resultType='user'> select * from user <where> <if test='IDs != null and IDs.size() >0'><foreach collection='IDs' open=' and id in (' close=')' item='uid' separator=','> #{uid}</foreach> </if> </where></select>
報錯信息:
org.apache.ibatis.binding.BindingException: Parameter ‘IDs’ not found. Available parameters are [collection, list]
解決方法:
方法一:將我們的XML中collection屬性值直接設置為list
DAO 層:
List<User> selectUserByIDs( List IDs);
XML文件:
<select parameterType='java.util.List' resultType='user'> select * from user <where> <if test='list != null and list.size() >0'><foreach collection='list' open=' and id in (' close=')' item='uid' separator=','> #{uid}</foreach> </if> </where></select>
方法二: 利用注解@Param指定我們的入參名稱
DAO層:
List<User> selectUserByIDs(@Param('IDs') List IDs);
XML文件:
<select parameterType='java.util.List' resultType='user'> select * from user <where> <if test='IDs != null and IDs.size() >0'><foreach collection='IDs' open=' and id in (' close=')' item='uid' separator=','> #{uid}</foreach> </if> </where></select>
到此這篇關于詳解Mybatis 傳遞參數類型為List的取值問題的文章就介紹到這了,更多相關Mybatis 傳遞參數類型為List的取值內容請搜索好吧啦網以前的文章或繼續瀏覽下面的相關文章希望大家以后多多支持好吧啦網!
相關文章: