Type interface com.dao.StuDao is not known to the MapperRegistry.
时间: 2023-11-09 18:01:12 浏览: 131
Mybatis注解学习--xxxMapper is not known to the MapperRegistry
这个错误通常是因为 MyBatis 没有正确配置或扫描到对应的 Mapper 接口。可以检查以下几点:
1. 确认 Mapper 接口的包路径是否正确,是否在 MyBatis 的扫描范围内。
2. 确认 Mapper 接口的命名规范是否符合 MyBatis 的要求,即接口名与对应的 XML 文件名相同,且在同一个包下。
3. 确认在 MyBatis 的配置文件中是否正确配置了 Mapper 接口的扫描路径。
阅读全文