如何在 Maven 中读取外部属性文件

问题描述 投票:0回答:3

有谁知道如何读取 Maven 中的 x.properties 文件。我知道有一些方法可以使用资源过滤来读取属性文件并从中设置值,但我想要在我的 pom.xml 中使用如下方法:

<properties file="x.properties"> 

</properties>

对此有一些讨论: Maven 外部属性

java build maven-2 properties-file
3个回答
104
投票

尝试一下 属性 Maven 插件


66
投票

使用建议的 Maven 属性插件,我能够读取用于版本化我的构建的 buildNumber.properties 文件。

  <build>    
    <plugins>
      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>properties-maven-plugin</artifactId>
        <version>1.2.1</version>
        <executions>
          <execution>
            <phase>initialize</phase>
            <goals>
              <goal>read-project-properties</goal>
            </goals>
            <configuration>
              <files>
                <file>${basedir}/../project-parent/buildNumber.properties</file>
              </files>
            </configuration>
          </execution>
        </executions>
      </plugin>
   </plugins>

6
投票

这个类似问题的answer描述了如何扩展属性插件,以便它可以使用属性文件的远程描述符。描述符基本上是一个包含属性文件的 jar 工件(属性文件包含在 src/main/resources 下)。

描述符作为扩展属性插件的依赖项添加,因此它位于插件的类路径上。该插件将在类路径中搜索属性文件,将文件的内容读入 Properties 实例,并将这些属性应用到项目的配置中,以便它们可以在其他地方使用。

© www.soinside.com 2019 - 2024. All rights reserved.