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

异常

在使用mybatis时报此错:

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

原因

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

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

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

解决

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

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

然后再执行就能成功了。

上一篇:Name or service not known原因(补充自身遇到的问题)


下一篇:auto_clipboard