在pom.xml中指定默认参数并在命令行中重写它

时间:2017-07-27 13:54:02

标签: java xml maven pom.xml

我的主类的唯一功能是从xml配置文件中读取,我目前在命令行中指定该文件。是否可以使它在pom.xml中指定默认配置文件,因此如果程序是从命令行运行而不传入参数,则读取该配置文件,但是如果使用-Dexec传入参数.args默认是否被覆盖?

1 个答案:

答案 0 :(得分:2)

首先看一下exec插件文档here

maven in properties中的

指定要查看my.custom.property

的默认属性
<project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>test.test</groupId>
    <artifactId>test</artifactId>
    <version>1.0-SNAPSHOT</version>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
        <java.version>1.8</java.version>
        <maven.compiler.source>1.8</maven.compiler.source>
        <maven.compiler.target>1.8</maven.compiler.target>
        <maven.compiler.debug>true</maven.compiler.debug>
        <!-- frameworks -->

        <!-- properties -->
        <my.custom.property>MAVEN</my.custom.property>
    </properties>

    <build>
        <plugins>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>exec-maven-plugin</artifactId>
                <version>1.6.0</version>
                <executions>
                    <execution>
                        <goals>
                            <goal>java</goal>
                        </goals>
                    </execution>
                </executions>
                <configuration>
                    <mainClass>test.Test</mainClass>
                    <arguments>
                        <argument>${my.custom.property}</argument>
                    </arguments>
                </configuration>
            </plugin>
        </plugins>
    </build>

</project>

这是java类

package test;

import java.util.stream.Stream;


public class Test {

    public static void main(String[] args) {
        Stream.of(args)
                .forEach(arg -> System.out.println("ARGUMENT " + arg));
    }
}

如果你执行mvn compile exec:java,你应该看到某个地方超出ARGUMENT MAVEN。如果你提供自己的论点,例如。 mvn compile exec:java -Dmy.custom.property=TEST你应该在控制台的某个地方看到ARGUMENT TEST。