3

我想将 settings.xml 配置文件参数注入 Java 类。我尝试使用 maven-annotation-plugin 但值为 null。我想知道这是不是因为这个插件是为 Mojo 设计的

Setting.xml 片段

  <profiles>
    <profile>
      <id>APP_NAME</id>
      <properties>
        <test.email>USER_EMAIL</test.email>
        <test.password>USER_PASSWORD</test.password>
      </properties>
    </profile>
  </profiles>

在班上

@Parameter(defaultValue = "test.email", readonly = true)
private String userEmail;

@Parameter(defaultValue = "test.password", readonly = true)
private String userPassword;
4

2 回答 2

7

我会maven-resources-plugin用来生成.properties文件并避免生成代码。

<build>
  <resources>
    <resource>
      <directory>src/main/resources</directory>
      <filtering>true</filtering>
    </resource>
  </resources>
<build>

并创建文件src/main/resources/com/example/your/file.properties

testMail = ${test.email}
propertyName = ${maven.variable.name}

在Java中访问它:

getClass().getResourceAsStream("/com/example/your/file.properties")

更进一步,您可以通过以下方式强制test.email属性的存在maven-enforcer-plugin

<build>
  <plugin>
    <artifactId>maven-enforcer-plugin</artifactId>
    <executions>
      <execution>
        <id>enforce-email-properties</id>
        <goals>
          <goal>enforce</goal>
        </goals>
        <configuration>
          <rules>
            <requireProperty>
              <property>test.email</property>
              <message>
                The 'test.email' property is missing.
                It must [your free error text here]
              </message>
            </requireProperty>
          </rules>
        </configuration>
      </execution>
    </executions>
  </plugin>
</build>
于 2013-03-18T11:20:12.703 回答
1

您可以使用 Maven 生成一个Properties文件并将其加载 到您的 Java 类中。

于 2013-03-18T11:20:49.947 回答