Maven货运插件嵌入了tomcat 7配置

时间:2012-01-11 14:30:00

标签: java-ee maven-2 tomcat7 maven-cargo

我想知道maven货运插件运行嵌入式tomcat 7进行集成测试所需的最低配置是什么,请指教,谢谢。

1 个答案:

答案 0 :(得分:0)

应该足够了(指定端口是可选的,更改url以获取不同版本的tomcat7):

        <plugin>
    <groupId>org.codehaus.cargo</groupId>
    <artifactId>cargo-maven2-plugin</artifactId>
    <version>1.2.0</version>
    <!-- minimal configuration to let adb run (mvn package org.codehaus.cargo:cargo-maven2-plugin:run) in a local tomcat -->
    <configuration>
      <container>
        <containerId>tomcat7x</containerId>
        <zipUrlInstaller>
          <url>http://a-inet01:8100/apache-tomcat-7.0.25.zip</url>
        </zipUrlInstaller>
      </container>
      <configuration>
        <properties>
          <cargo.servlet.port>1718</cargo.servlet.port>
        </properties>
      </configuration>
    </configuration>
  </plugin>

比mvn package org.codehaus.cargo:cargo-maven2-plugin:run(在包装为“war”的mavenproject上)将创建战争,从给定的url下载tomcat,启动它并部署战争。如果你使用start,如果maven完成就停止容器(你将在集成测试中使用这个):  如果你想自动启动货物而不是补货:

            <plugin>
            <groupId>org.codehaus.cargo</groupId>
            <artifactId>cargo-maven2-plugin</artifactId>
            <executions>
                <execution>
                    <id>start-container</id>
                    <phase>pre-integration-test</phase>
                    <goals>
                        <goal>start</goal>
                    </goals>
                </execution>
                <execution>
                    <id>stop-container</id>
                    <phase>post-integration-test</phase>
                    <goals>
                        <goal>stop</goal>
                    </goals>
                </execution>
            </executions>
            <configuration>
                [Cargo plugin configuration goes in here]
            </configuration>
        </plugin>

刚刚从货物专家文件(http://cargo.codehaus.org/Starting+and+stopping+a+container)复制而来。这将在“集成测试”之前启动容器,并在测试之后停止它。