nested exception is org.apache.ibatis.binding.BindingException: Parameter 'decType' not found. Available parameters are [param1, et]
时间: 2023-08-07 21:03:24 浏览: 90
Mybatis报错: org.apache.ibatis.exceptions.PersistenceException解决办法
这个错误是由于在使用 MyBatis 进行 SQL 查询时,找不到参数 'decType' 导致的。在你的代码中,'decType' 参数没有正确地传递给 SQL 语句,而 MyBatis 只能识别已经指定的参数,即 [param1, et]。你需要检查你的代码,确保在调用 SQL 查询时正确地传递了 'decType' 参数。另外,你还需要检查你的 SQL 语句,确保它正确地引用了 'decType' 参数。
阅读全文