org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.example.gym.dao.YejitongjiDao.selectById
时间: 2023-08-25 14:18:25 浏览: 88
MyBatis绑定错误提示BindingException:Invalid bound statement (not found)的解决方法
您好!根据您提供的错误信息,`org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.example.gym.dao.YejitongjiDao.selectById`,这个错误通常是因为 MyBatis 在 XML 映射文件中找不到对应的 SQL 语句导致的。
请确保您的 `com.example.gym.dao.YejitongjiDao` 接口对应的 XML 映射文件中包含了名为 `selectById` 的 SQL 语句,并且 XML 文件的路径在 MyBatis 的配置文件中正确配置。
另外,请检查一下 SQL 语句的命名是否正确,以及 XML 文件中是否存在语法错误。
如果您能提供更多相关的代码和配置信息,我可以更具体地帮助您解决问题。
阅读全文