我使用属性插件来解决此问题。
属性在pom中定义,并写到my.properties文件中,然后可以从Java代码中访问它们。
就我而言,是测试代码需要访问该属性文件,因此在pom中,属性文件被写入maven的testOutputDirectory:
<configuration>
<outputFile>${project.build.testOutputDirectory}/my.properties</outputFile>
</configuration>
如果希望属性可通过应用程序代码访问,请使用outputDirectory:
<configuration>
<outputFile>${project.build.outputDirectory}/my.properties</outputFile>
</configuration>
对于那些正在寻找更完整示例的人(我花了一些时间才让它工作,因为我不了解属性标记的命名方式如何影响在pom文件中其他位置检索它们的能力),我的pom如下所示:
<dependencies>
<dependency>
...
</dependency>
</dependencies>
<properties>
<app.env>${app.env}</app.env>
<app.port>${app.port}</app.port>
<app.domain>${app.domain}</app.domain>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.20</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>properties-maven-plugin</artifactId>
<version>1.0.0</version>
<executions>
<execution>
<phase>generate-resources</phase>
<goals>
<goal>write-project-properties</goal>
</goals>
<configuration>
<outputFile>${project.build.testOutputDirectory}/my.properties</outputFile>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
并在命令行上:
mvn clean test -Dapp.env=LOCAL -Dapp.domain=localhost -Dapp.port=9901
因此,可以从Java代码访问以下属性:
java.io.InputStream inputStream = Thread.currentThread().getContextClassLoader().getResourceAsStream("my.properties");
java.util.Properties properties = new Properties();
properties.load(inputStream);
appPort = properties.getProperty("app.port");
appDomain = properties.getProperty("app.domain");