我正在尝试使用maven执行以下方案:
这是pom.xml snip:
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.2.1</version>
<executions>
<execution>
<id>launch-myApp</id>
<phase>pre-integration-test</phase>
<goals>
<goal>exec</goal>
</goals>
</execution>
</executions>
<configuration>
<executable>java</executable>
<arguments>
<argument>-DMY_APP_HOME=/usr/home/target/local</argument>
<argument>-Djava.library.path=/usr/home/other/lib</argument>
<argument>-classpath</argument>
<classpath/>
<argument>com.foo.MyApp</argument>
</arguments>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>2.12</version>
<executions>
<execution>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
</execution>
</executions>
<configuration>
<forkMode>always</forkMode>
</configuration>
</plugin>
</plugins>
如果我执行mvn post-integration-test,我的应用程序将作为maven进程的子进程启动,但是应用程序进程阻止maven进程执行下一阶段的集成测试。后来我发现maven exec插件中有一个bug (or missing functionality?),因为应用程序进程阻止了maven进程。为了解决这个问题,我在一个shell脚本中封装了MyApp.java的调用,然后附加了“/ dev / null 2&gt;&amp; 1&amp;”以产生一个单独的后台进程。这是来自runTest.sh的剪辑(这只是一个剪辑,而不是实际剪辑):
java - DMY_APP_HOME =$2 com.foo.MyApp > /dev/null 2>&1 &
虽然这解决了我的问题,还有其他办法吗?我错过了exec-maven-plugin的任何论据吗?
答案 0 :(得分:3)
您可以使用async配置参数来实现所需。另请参阅asyncDestroyOnShutdown,它默认会在JVM出口处关闭应用程序。
https://www.mojohaus.org/exec-maven-plugin/exec-mojo.html#async
如果设置为true,子进程将异步执行,并且构建执行将继续并行。
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.6.0</version>
<executions>
<execution>
<id>launch-myApp</id>
<phase>pre-integration-test</phase>
<goals>
<goal>exec</goal>
</goals>
</execution>
</executions>
<configuration>
<executable>java</executable>
<arguments>
<argument>-DMY_APP_HOME=/usr/home/target/local</argument>
<argument>-Djava.library.path=/usr/home/other/lib</argument>
<argument>-classpath</argument>
<classpath/>
<argument>com.foo.MyApp</argument>
</arguments>
<async>true</async>
</configuration>
</plugin>
答案 1 :(得分:2)
(仅限Unix) 使用exec:exec并启动脚本。 这个脚本应该调用
java -DMY_APP_HOME =$2 com.foo.MyApp > /dev/null 2>&1 &
首先,在脚本完成之前检查启动。 程序在2秒内崩溃了吗?
当您的Java应用程序需要一些时间来启动时,您可以添加等待完整启动的脚本。
retrymax=30
retry=0
RETURNCODE=1
while [ ${retry} -lt ${retrymax} ]; do
todo_your_test
RETURNCODE=$?
if [ ${RETURNCODE} -eq 0 ]; then
echo MyApp started
break
else
(( retry = retry + 1 ))
sleep 2
fi
done
exit ${RETURNCODE}
答案 2 :(得分:1)
使用Ant在这个线程中有一个可能的解决方案:可能的解决方案:Maven and Exec: forking a process?
与当前解决方案相同的缺点是它也依赖于平台。您当前的解决方案只能在类似Unix / Linux的环境中运行,而基于Ant的解决方案正在启动cmd
的实例,该实例仅适用于Windows。使用Maven配置文件,可以创建一个配置,使用它运行的操作系统来确定启动哪个命令shell。
答案 3 :(得分:1)