Servlet.service() for servlet [dispatcherServlet] in context with path [/] threw exception [Request processing failed; nested exception is org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.zo.unified.access.service.auth.OauthService.getThirdLoginUrl] with root cause
时间: 2023-08-25 21:17:08 浏览: 184
Spring mvc
这个异常通常是因为MyBatis找不到对应的SQL语句导致的。具体来说,你的代码中可能存在以下问题之一:
1. 你的SQL语句没有正确的配置,比如XML文件中没有正确的定义或者没有将SQL语句与Mapper接口方法正确的绑定。
2. 你的Mapper接口方法名与XML文件中定义的SQL语句id不一致,导致找不到对应的SQL语句。
3. 你的Mapper接口方法没有正确的注解,或者注解中的参数与SQL语句中的参数不匹配。
你可以检查一下以上几个方面,看看是否存在问题。另外,如果你能提供更多的代码细节和报错信息,我可以帮你更好地定位问题。
阅读全文