扫码关注官方订阅号
走同样的路,发现不同的人生
Maven Resources Plugin
The mapping matches URLs using the following rules:
* matches zero or more characters (匹配0个或N个字符)
*
** matches zero or more directories in a path (匹配0个或N个目录)
**
Examples
com/*.jsp — matches all .jsp files in the com directory
com/*.jsp
.jsp
com/**/test.jsp — matches all test.jsp files underneath the com path
com/**/test.jsp
test.jsp
楼主可以将表达式写成如下尝试:
<excludes> <exclude>**/generatorConfig.xml</exclude> </excludes>
微信扫码关注PHP中文网服务号
QQ扫码加入技术交流群
扫描下载App
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
PHP学习
技术支持
返回顶部
Maven Resources Plugin
The mapping matches URLs using the following rules:
*
matches zero or more characters (匹配0个或N个字符)**
matches zero or more directories in a path (匹配0个或N个目录)Examples
com/*.jsp
— matches all.jsp
files in the com directorycom/**/test.jsp
— matches alltest.jsp
files underneath the com path楼主可以将表达式写成如下尝试: