ฉันใช้ปลั๊กอินคุณสมบัติเพื่อแก้ปัญหานี้
คุณสมบัติถูกกำหนดไว้ใน pom และเขียนลงในไฟล์ my.properties ซึ่งสามารถเข้าถึงได้จากโค้ด Java ของคุณ
ในกรณีของฉันมันเป็นรหัสทดสอบที่ต้องการเข้าถึงไฟล์คุณสมบัตินี้ดังนั้นใน pom ไฟล์คุณสมบัติจึงถูกเขียนลงใน testOutputDirectory ของ maven:
<configuration>
<outputFile>${project.build.testOutputDirectory}/my.properties</outputFile>
</configuration>
ใช้ outputDirectory หากคุณต้องการให้คุณสมบัติสามารถเข้าถึงได้ด้วยรหัสแอปของคุณ:
<configuration>
<outputFile>${project.build.outputDirectory}/my.properties</outputFile>
</configuration>
สำหรับผู้ที่กำลังมองหาตัวอย่างที่สมบูรณ์กว่านี้ (ฉันต้องใช้เวลาในการทำงานเล็กน้อยเนื่องจากฉันไม่เข้าใจว่าการตั้งชื่อแท็กคุณสมบัติมีผลต่อความสามารถในการดึงข้อมูลที่อื่นในไฟล์ 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");