BindingException: Parameter 'ids' not found. Available parameters are [collection, list]

mybatis中dao传List参数,foreach批量插入找不到参数

  • 接口
    List<User> findAllUserAccountRole(List<Integer> ids);
  • XML配置文件
 <where>
 <foreach collection="ids" open="u.id in(" item="id" close=")" separator=",">
             #{id}
  </foreach>
 </where>
  • 结果
Error querying database.Cause: org.apache.ibatis.binding.BindingException: 
Parameter 'ids' not found. Available parameters are [collection, list]
  • 原因
    mybatis 中当 DAO 传入的 List 参数时,会自动将参数封装成 Map 参数,而 map中的 key 会自动用 list , value 就是你传入的 List 参数.
  • 修改
    第一种: 将 List 参数封装为 Map 然后再传入,在 XML 配置页面写上相应 key 值.
    第二种: 将 condition 的值修改为 list
<where>
   <foreach collection="list" open="u.id in(" item="id" close=")" separator=",">
         #{id}
   </foreach>
 </where>

猜你喜欢

转载自blog.csdn.net/terstdfhuc/article/details/83512237