标签:logs XML bsp 丢失 center 配置文件 size text tor
4.IDEA使用maven编译工程之后xml等配置文件丢失问题
1.使用maven编译工程之后xml等配置文件丢失的问题;
1.1工程编译之后配置文件不见了,导致工程无法访问:
1.2解决办法:在pom.xml中加入如下配置就搞定了:
<resources> <resource> <directory>src/main/java</directory> <excludes> <exclude>**/*.java</exclude> </excludes> </resource> </resources>
注意:上面代码的位置:在<build>标签中。
4.IDEA使用maven编译工程之后xml等配置文件丢失问题
标签:logs XML bsp 丢失 center 配置文件 size text tor
原文地址:http://www.cnblogs.com/Nick-Hu/p/7355398.html