org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.itheima.controller.EmpDao.query1
时间: 2024-06-04 18:05:08 浏览: 104
解决org.apache.ibatis.binding.BindingException: Invalid bound statement (not found
5星 · 资源好评率100%
这个异常通常是因为 Mybatis 找不到指定的 SQL 语句所引起的。可能原因包括 SQL 语句的 id 拼写错误、XML 文件中没有定义该 id 的 SQL 语句、Mapper 接口中的方法名拼写错误等。您可以检查一下 `com.itheima.controller.EmpDao` 接口中是否有名为 `query1` 的方法,或者检查对应的 XML 文件中是否有定义名为 `query1` 的 SQL 语句。
阅读全文