17

我有一个多模块 Maven 项目,其中一个模块用于分发。

Project \
| moduleA \
| moduleB \
| ...
| dist-module \

该发行版包含一个我想轻松执行的可执行 jar。但是,要执行它,我必须输入如下内容:

java -jar dist-module/target/dist-module-1.0-SNAPSHOT-full-dist/myJar.jar

最好简单地键入:

mvn exec:java \ OR
mvn exec:exec

不幸的是,我找不到让 java 目标执行 .jar 的方法。exec 目标实际上会这样做,但有一个问题:jar 包含一个嵌入式码头服务器,并且由于 exec 的工作方式(不使用与 maven 相同的 JVM),除非我终止该进程,否则服务器不会终止手动,同样麻烦。

关于如何使用 maven 执行此操作的任何建议?

编辑:
为澄清起见,此命令将主要用于简单的手动烟雾测试;读取日志输出并确保程序在其分发环境中正确启动。因此,它可能应该是一个阻塞调用,使用 ctrl-c 终止服务器和 maven。

嵌入式服务器专门用于运行一些特定的应用程序,并且不会自动重新加载它们。因此,没有必要让服务器长时间独立于 maven 运行。

4

2 回答 2

29

mvn exec:java 直接从 target/ 下面的编译器输出运行应用程序 - 无需从 jar 运行:

    <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>exec-maven-plugin</artifactId>
        <version>1.2.1</version>
        <executions>
            <execution>
                <id>default-cli</id>
                <goals>
                    <goal>java</goal>
                </goals>
                <configuration>
                    <mainClass>uk.co.pookey.hibernate.App</mainClass>
                    <systemProperties>
                        <systemProperty>
                            <key>derby.stream.error.file</key>
                            <value>${basedir}/target/derby.log</value>
                        </systemProperty>
                    </systemProperties>
                </configuration>
            </execution>
        </executions>
    </plugin>            

如果你想用 mvn exec:exec 运行 jar:

    <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>exec-maven-plugin</artifactId>
        <version>1.2.1</version>
        <executions>
            <execution>
                <id>default-cli</id>
                <goals>
                    <goal>exec</goal>
                </goals>
                <configuration>
                    <executable>java</executable>
                    <!-- optional -->
                    <workingDirectory>/tmp</workingDirectory>
                    <arguments>
                        <argument>-jar</argument>
                        <argument>${basedir}/target/hibernate-derby-memory-${project.version}.jar</argument>
                    </arguments>
                </configuration>                        
            </execution>
        </executions>
    </plugin>         

如果您在终止码头时遇到问题,我建议您运行集成测试(或者在没有先终止码头的情况下不要退出码头主线程,或者只使用码头的停止端口)!可以在后台运行一个JVM,让maven在测试后再次停止它。为此分为三个阶段:集成前测试、集成测试或集成后测试。您可以在http://docs.codehaus.org/display/MAVENUSER/Maven+and+Integration+Testing阅读更多相关信息。使用 jetty maven 插件时, pom.xml 配置可能像:

   <plugin>
        <groupId>org.mortbay.jetty</groupId>
        <artifactId>jetty-maven-plugin</artifactId>
        <!-- test start/stop: -->
        <executions>                
            <execution>
                <id>start-jetty</id>
                <phase>pre-integration-test</phase>
                <goals>
                    <goal>deploy-war</goal>
                </goals>
                <configuration>
                    <daemon>true</daemon>
                    <systemProperties>
                        <systemProperty>
                            <name>some.prop</name>
                            <value>false</value>
                        </systemProperty>
                    </systemProperties>
                </configuration>
            </execution>
            <execution>
                <id>stop-jetty</id>
                <phase>post-integration-test</phase>
                <goals>
                    <goal>stop</goal>
                </goals>
            </execution>
        </executions>    
    </plugin>

您可以绑定 maven antrun 插件来执行任意命令,而不是将 jetty maven 插件绑定到这些阶段。

于 2013-03-07T22:03:53.447 回答
3

如果你想执行一些东西,我会使用 maven ant 或 gmaven(然后使用 groovy ant builder)

在您进行编辑后,您听起来像是在使用DropWizard之类的东西。您可能想看看他们是如何解决这个问题的。

根据评论编辑:

Spring Boot Maven 将创建可执行的战争并执行它们,您不需要 Spring Boot 或 Spring。我在此处的回答中有更多详细信息:可以将 spring-boot-maven-plugin 用于非 spring 项目吗?

于 2013-03-01T01:00:11.523 回答