这是我的pom.xml文件:
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>com.test</groupId>
<artifactId>test</artifactId>
<version>1.0-SNAPSHOT</version>
<profiles>
<profile>
<id>my_proj</id>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.4.0</version>
<executions>
<execution>
<phase>install</phase>
<goals>
<goal>exec</goal>
</goals>
</execution>
</executions>
<configuration>
<executable>java</executable>
<arguments>
<argument>-classpath</argument>
<classpath />
<argument>com.test.Main</argument>
</arguments>
<systemProperties>
<systemProperty>
<key>someKey</key>
<value>someValue</value>
</systemProperty>
</systemProperties>
<environmentVariables>
<someKey>
someValue
</someKey>
</environmentVariables>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
并在Main.java中
public static void main(String[] args) {
System.out.println("hello world" + System.getenv("someKey") + " " + System.getProperty("someKey"));
}
我运行时的输出
mvn install -Pmy_proj
是
hello worldsomeValue null
我似乎无法获得systemProperty值。我做错了什么?
答案 0 :(得分:7)
systemProperty
不起作用仅仅因为它不是exec
的exec-maven-plugin
目标的预期元素。
检查官方exec
goal page,未指定systemProperties
元素。因此,您的配置对Maven仍然有效,因为它是格式良好的XML,但exec-maven-plugin
会忽略它。
关于插件configuration
元素的官方Maven Pom Reference:
值得注意的是,所有配置元素(无论它们位于POM中)都旨在将值传递给另一个底层系统,例如插件。换句话说:POM模式从不明确要求配置元素中的值,但插件目标完全有权要求配置值。
您对其systemProperties
目标预见的java
配置条目感到困惑。这个选项因其上下文而在那里可用:它是为java执行而精心设计的。另一方面,exec
目标更通用,因此无法预见只有java程序才需要的选项。
要通过exec
目标将系统属性传递给Java执行,您可以使用arguments
配置条目并使用-D
notation
-Dproperty=value
设置系统属性值。
进一步注意,根据官方Running Java programs with the exec goal文档,-D
参数应首先出现:
<configuration>
<executable>java</executable>
<arguments>
<argument>-DsomeKey2=someValue2</argument>
<argument>-classpath</argument>
<classpath />
<argument>com.test.Main</argument>
</arguments>
<environmentVariables>
<someKey>someValue</someKey>
</environmentVariables>
</configuration>
此外,您不应为环境和系统属性设置相同的变量名,否则不会设置系统属性。