gpt4 book ai didi

java - 在 exec-maven-plugin 中设置 systemProperty 不起作用

转载 作者:行者123 更新时间:2023-12-04 14:26:37 24 4
gpt4 key购买 nike

这是我的 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 值。我做错了什么?

最佳答案

systemProperty 不起作用只是因为它不是 exec 的预期元素exec-maven-plugin 的目标.

查看官方exec goal page , 未指定 systemProperties 元素。因此,您的配置对 Maven 仍然有效,因为它是格式良好的 XML,但它会被 exec-maven-plugin 忽略。

来自官方Maven Pom Reference关于插件 configuration 元素:

It may be good to note that all configuration elements, wherever they are within the POM, are intended to pass values to another underlying system, such as a plugin. In other words: values within a configuration element are never explicitly required by the POM schema, but a plugin goal has every right to require configuration values.


您混淆了 systemPropertiesjava预见的配置条目目标。这个选项在那里可用是因为它的上下文:它是为 java 执行而设计的。另一方面,exec 目标更为通用,因此无法预见只有 java 程序才需要的选项。

要通过 exec 目标将系统属性传递给 Java 执行,您可以使用 arguments配置条目并使用 -D notation

-Dproperty=value Sets a system property 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>

此外,您不应为环境和系统属性设置相同的变量名,否则系统属性将不会被设置。

关于java - 在 exec-maven-plugin 中设置 systemProperty 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36574248/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com