0

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

4

1 回答 1

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上)将创建war,从给定的url下载tomcat,启动它并部署war。如果你使用 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>

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

于 2012-01-31T12:36:29.573 回答