mybatis 批量增加 Parameter '__frch_item_0' not found. Available parameters are [list]

本文详细介绍了在MyBatis中使用foreach时遇到Parameter not found错误的几种常见原因及解决方案,包括检查参数类型、确认collection属性、验证参数字段名、确保数据库自动增长设置正确等。

当在mybatis用到foreach的时候,会报这个错误Parameter '__frch_item_0' not found. Available parameters are [list]会出现的几种解决方案

例子

 

  <insert id="insertBatchPicAttachment"  parameterType="java.util.List">
       insert into pic_attachment 
          (pic_id,pic_udid,relate_id,relate_code,relate_code_dtl,pic_name,pic_url,pic_remote_url) 
       values
       <foreach collection="list"  item="item" index="index" separator=",">
          (#{item.picId},#{item.picUdid},#{item.relateId},#{item.relateCode},#{item.relateCodeDtl},#{item.picName},#{item.picUrl},#{item.picRemoteUrl})
       </foreach>    
       <selectKey resultType="java.lang.Integer" order="AFTER" keyProperty="picId">
            select LAST_INSERT_ID();
       </selectKey> 
    </insert>

1.查看parameterType的类型是不是java.util.List类型,如果是的话,看foreach 的collection属性是不是list,

    因为 传递一个 List 实例或者数组作为参数对象传给 MyBatis,MyBatis 会自动将它包装在一个 Map 中,用名称在作为键。List 实例将会以“list” 作为键,而数组实例将会以“array”作为键 

2.看一下foreach里面的值有没有传递进来 

3.看foreach里面的名称字段是否写错 

4.还有就是我用Mybatis的时候,用mysql的值插入自动增长值,里面的key我在数据库中没有设置自动增长,然后我又用了selectkey,所以也会出现这种情况


应该还有别的错误能够导致这个错误。但是我就只遇到这几种。所以做个总结

public Object intercept(final Invocation invocation) throws Throwable { // 检查表名替换开关是否开启(处理null值情况) Boolean tableReplaceEnabled = configParam.getTableReplaceEnabled(); if (tableReplaceEnabled == null || !tableReplaceEnabled) { log.info("表名替换开关关闭:{}", tableReplaceEnabled); return invocation.proceed(); } log.info("表名替换开关打开:{}", tableReplaceEnabled); // 获取原始SQL Object[] args = invocation.getArgs(); MappedStatement mappedStatement = (MappedStatement) args[0]; Object parameter = args[1]; BoundSql boundSql = mappedStatement.getBoundSql(parameter); String originalSql = boundSql.getSql(); // 检查是否包含需要替换的表名 if (originalSql.contains(ORIGINAL_TABLE_NAME)) { // 执行表名替换 String replacedSql = originalSql.replace(ORIGINAL_TABLE_NAME, TARGET_TABLE_NAME); log.info("表名替换完成,原始SQL:{},替换后SQL:{}", originalSql, replacedSql); //重新生成一个BoundSql对象,确保参数映射正确传递 // 关键:使用原始的parameter对象,这样MyBatis会自动处理批量操作的参数绑定 BoundSql bs = new BoundSql(mappedStatement.getConfiguration(), replacedSql, boundSql.getParameterMappings(), parameter); //重新生成一个MappedStatement对象 MappedStatement newMs = copyMappedStatement(mappedStatement, new BoundSqlSqlSource(bs)); //赋回给实际执行方法所需的参数中 args[0] = newMs; } // 继续执行原始查询 return invocation.proceed(); }这段mybatis拦截器代码执行报错Parameter '__frch_item_0' not found. Available parameters are [request, param1],是什么原因,如何解决
最新发布
11-08
评论 6
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值