您可能正在使用过滤器机制,您可以为此决定是否将其应用于某个文件夹以及应将哪个过滤器应用于该文件夹。
给定以下示例 POM:
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.sample</groupId>
<artifactId>resources-example</artifactId>
<version>1.0-SNAPSHOT</version>
<build>
<filters>
<filter>src/main/filters/filter.properties</filter>
</filters>
<resources>
<!-- configuring an additional resources folder: conf -->
<resource>
<directory>${project.basedir}/src/main/conf</directory>
<filtering>true</filtering>
<excludes>
<exclude>*.txt</exclude>
</excludes>
<includes>
<include>*.properties</include>
</includes>
<targetPath>${project.basedir}/target</targetPath>
</resource>
</resources>
</build>
</project>
注意filters
部分中的build
部分。在这里,我们告诉 Maven 过滤器在哪里,提供占位符替换。
然后注意<filtering>true</filtering>
添加到之后配置的新资源和相关的包含/排除模式。因此,Maven 将仅过滤此文件夹的 *.properties 文件。
现在, src/main/conf 可以包含一个 conf.properties 文件,其内容如下:
## add some properties here
property.example=@property.value1@
property.example2=${property.value2}
(注意 ant 和 maven 样式的占位符。)
虽然 src/main/filters (您需要创建此文件夹)包含filter.properties
具有以下内容的文件:
property.value1=filtered-value1
property.value2=filtered-value2
运行构建,您将conf.properties
在target
目录中获得具有以下内容的文件:
property.example=filtered-value1
property.example2=filtered-value2
现在,如果您的过滤器(文件名)是配置文件注入的属性,那么您可以根据环境注入不同的过滤器,并且只针对某些文件。