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>
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值