Parameter 'xxxx' not found. Available parameters are [list] at java.util.concurrent.FutureTask

在使用MyBatis时遇到'Parameter 'categoryIds' not found.'的错误,问题源于foreach遍历集合时参数名不匹配。解决方法包括:1)在XML配置中将item改为list;2)在DAO中将参数放入Map中,key值任意。参考MyBatis官方文档,foreach元素允许遍历任何Iterable、Map或Array对象,Map时index为键,item为值。
摘要由CSDN通过智能技术生成

Parameter 'categoryIds' not found. Available parameters are [list] at java.util.concurrent.FutureTask.report(FutureTask.java:122);

xml配置

<select id="getContainInfoByListCategoryIds" resultType="CmsCategoryContainInfoSource">
SELECT containsInfo.* from  cms_category_containinfo containsInfo where containsInfo.categoryid in 
<foreach collection="categoryIds" index="index" item="id" open="(" separator="," close=")">
#{id}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值