解决Property ‘mapperLocations‘ was not specified or no matching resources found问题
作者:互联网
问题描述
在编写mybatis映射文件时,将XML文件放到了包下,而不是resources文件夹下,maven在打包的时候,默认是不会把xml文件打包编译,因此需要手动在pom文件配置,让maven在编译时把xml文件也进行输出。
解决方案
在pom文件中加入以下代码
<!-- 项目打包时会将java目录中的*.xml文件也进行打包 -->
<build>
<resources>
<resource>
<directory>src/main/java</directory>
<includes>
<include>**/*.xml</include>
</includes>
<filtering>false</filtering>
</resource>
</resources>
</build>
标签:xml,文件,no,maven,编译,pom,specified,found,resources 来源: https://blog.csdn.net/m0_46702468/article/details/122021790