接口

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>

Logo

魔乐社区(Modelers.cn) 是一个中立、公益的人工智能社区,提供人工智能工具、模型、数据的托管、展示与应用协同服务,为人工智能开发及爱好者搭建开放的学习交流平台。社区通过理事会方式运作,由全产业链共同建设、共同运营、共同享有,推动国产AI生态繁荣发展。

更多推荐