今天晚上在学习Mybatis注解的时候,总是遇到错误Type interface com.souvi.ibatis.xxxMapper is not known to the MapperRegistry,在网上搜索相关的解决方案时,得到的答案都不怎么详细,但知道了Mybatis注解一定要注册自己写的接口类,不然就会老报开头提到的这个错误。
出错原因:在mybatis_conifg.xml中未指定映射文件的路径
本文共 258 字,大约阅读时间需要 1 分钟。
今天晚上在学习Mybatis注解的时候,总是遇到错误Type interface com.souvi.ibatis.xxxMapper is not known to the MapperRegistry,在网上搜索相关的解决方案时,得到的答案都不怎么详细,但知道了Mybatis注解一定要注册自己写的接口类,不然就会老报开头提到的这个错误。
出错原因:在mybatis_conifg.xml中未指定映射文件的路径
转载于:https://www.cnblogs.com/fengfew/p/9761932.html