org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.atguigu.syt.cmn.mapper.DictMapper.selectDictTypeList
时间: 2023-08-21 14:17:47 浏览: 87
使用mybatis-plus报错Invalid bound statement (not found)错误
这个异常通常表示在 MyBatis 中找不到绑定的 SQL 语句。根据你提供的信息,似乎是找不到 `com.atguigu.syt.cmn.mapper.DictMapper.selectDictTypeList` 这个语句。
请确保在 `com.atguigu.syt.cmn.mapper.DictMapper.xml` 文件中定义了这个语句,并且命名空间和方法名都正确。另外,也要检查是否正确配置了 MyBatis 的映射文件和相关的配置文件。
如果你已经确认这些配置都正确,但仍然遇到此问题,请提供更多的代码和配置信息,以便更好地帮助你解决问题。
阅读全文