其他分享
首页 > 其他分享> > 使用Mybatis报错“Type interface com.test.mapper.UserMapper is not known to the MapperRegistry.“

使用Mybatis报错“Type interface com.test.mapper.UserMapper is not known to the MapperRegistry.“

作者:互联网

异常

在使用mybatis时报此错:

原因

因为没有在mybatis的核心配置文件中进行配置。

可以看到没有名为OrderMapper.xml的配置项

解决

我们要做的就是使用<mapper>标签在mybatis的核心配置文件sqlMapConfig.xml中进行配置,其中<mapper>标签的resource属性值就是该OrderMapper.xml文件的路径

然后再执行就能成功了。

标签:xml,mapper,OrderMapper,配置文件,标签,配置,mybatis,报错,known
来源: https://blog.csdn.net/cnds123321/article/details/117135266