文件路径查找
Posted joecqupt
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了文件路径查找相关的知识,希望对你有一定的参考价值。
- maven 查找失败 配置
https://www.cnblogs.com/dreamroute/p/6729147.html
<build>
.......
<resources>
<resource>
<directory>src/main/resources</directory>
<excludes>
<exclude>**/*.properties</exclude>
<exclude>**/*.xml</exclude>
</excludes>
<filtering>false</filtering>
</resource>
<resource>
<directory>src/main/java</directory>
<includes>
<include>**/*.properties</include>
<include>**/*.xml</include>
</includes>
<filtering>false</filtering>
</resource>
</resources>
......
</build>
以上是关于文件路径查找的主要内容,如果未能解决你的问题,请参考以下文章