Запуск двух экземпляров одного и того же процесса Java с разными параметрами с помощью maven pom.xml - PullRequest
0 голосов
/ 22 декабря 2018

Это то, что у меня есть, которое не работает.Я никогда не вижу второй экземпляр запущенного процесса.

<profile>
  <id>myid</id>
  <activation>
    <property>
      <name>myid</name>
    </property>
  </activation>
  <build>
    <plugins>
      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>exec-maven-plugin</artifactId>
        <version>1.3.2</version>
        <executions>
          <execution>
            <id>first-execution</id>
            <phase>integration-test</phase>
            <goals>
              <goal>exec</goal>
            </goals>
            <configuration>
              <executable>java</executable>
              <classpathScope>compile</classpathScope>
              <arguments>
                <argument>-Djava.net.preferIPv4Stack=true</argument>
                <argument>-Ddw.logging.file.currentLogFilename=${user.home}/logs/abc_20.log</argument>
                <argument>-Ddw.http.option1=5000</argument>
                <argument>-Ddw.http.option2=5001</argument>
                <argument>-Ddw.option3=abc1</argument>
                <argument>-Ddw.Id=abcdef1</argument>
                <argument>-classpath</argument>
                <classpath />
                <argument>com.mycompany.SomeService</argument>
                <argument>server</argument>
                <argument>dir1/config.yml</argument>
              </arguments>
            </configuration>
          </execution>
          <execution>
            <id>second-execution</id>
            <phase>deploy</phase>
            <goals>
              <goal>exec</goal>
            </goals>
            <configuration>
              <executable>java</executable>
              <classpathScope>compile</classpathScope>
              <arguments>
                <argument>-Djava.net.preferIPv4Stack=true</argument>
                <argument>-Ddw.logging.file.currentLogFilename=${user.home}/logs/abc_21.log</argument>
                <argument>-Ddw.http.option1=6000</argument>
                <argument>-Ddw.http.option2=6001</argument>
                <argument>-Ddw.option3=abc2</argument>
                <argument>-Ddw.Id=abcdef2</argument>
                <argument>-classpath</argument>
                <classpath />
                <argument>com.mycompany.SomeService</argument>
                <argument>server</argument>
                <argument>dir1/config.yml</argument>
              </arguments>
            </configuration>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
</profile>

Любая помощь / идеи / мысли будут оценены.

1 Ответ

0 голосов
/ 23 декабря 2018

Чтобы использовать асинхронную опцию, вам нужно настроить плагин следующим образом:

<configuration>
  ...
  <async>true</async>
</configuration>

Также рассмотрите возможность чтения https://maven.apache.org/guides/mini/guide-configuring-plugins.html#Configuring_Parameters о том, как можно настроить любой плагин maven.

...