org.apache.ibatis.binding.BindingException: Parameter 'checkReportDTO' not found. Available parameters are [dto, param1]
时间: 2023-08-27 22:22:25 浏览: 77
解决org.apache.ibatis.binding.BindingException: Invalid bound statement (not found
5星 · 资源好评率100%
这个异常通常是因为 MyBatis 无法找到正确的参数来执行 SQL 语句。你的代码中可能存在以下情况:
1. 在 Mapper.xml 中的 SQL 语句中,参数名称与 Mapper 接口中定义的方法参数名称不一致。
2. Mapper 接口中的方法参数没有添加 `@Param` 注解。
3. 在调用 Mapper 接口方法时,没有传递正确的参数。
你可以检查一下以上三个方面,看看哪一个出了问题。如果你提供更多的代码和异常信息,我可以给你更具体的建议。
阅读全文