Could not find resource FancyMapper.xml

前端之家收集整理的这篇文章主要介绍了Could not find resource FancyMapper.xml前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

mybatis和spring整合加载mapper.xml文件

<!-- 指定映射器路径 -->
<!--    <mappers>
        <mapper resource="FancyMapper.xml" />
    </mappers>-->

报错:
Could not find resource FancyMapper.xml

我将 FancyMapper.xml 文件放到

WEB-INF 目录和源包目录下都不行,都提示找不到。

最终才发现要放到其他源目录下:

这样使用下面代码就可以找到了:

<mappers>
        <mapper resource="mappers/FancyMapper.xml" />
</mappers>
原文链接:https://www.f2er.com/xml/296372.html

猜你在找的XML相关文章