gpt4 book ai didi

Maven tomcat 插件挂起

转载 作者:行者123 更新时间:2023-11-28 21:28:26 25 4
gpt4 key购买 nike

我有一个正在尝试运行集成测试的 Web 应用程序。它正常部署到 Web 服务器中运行良好。然而,当使用 Maven 和 Tomcat 插件进行集成测试时,它会无限期地卡在这个位置。

Aug 28, 2015 12:14:52 PM com.sun.jersey.server.impl.application.WebApplicationImpl _initiate
INFO: Initiating Jersey application, version 'Jersey: 1.19 02/11/2015 05:39 AM'
Aug 28, 2015 12:14:52 PM org.apache.coyote.AbstractProtocol start
INFO: Starting ProtocolHandler ["http-bio-8080"]

我有点忘记了,它已经在这个地方待了大约 2 个小时,所以我确定这不是耐心问题。

这是 Tomcat 和 Failsafe 的配置

<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>failsafe-maven-plugin</artifactId>
<version>2.4.3-alpha-1</version>
<executions>
<execution>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<version>2.0</version>
<executions>
<execution>
<id>start-tomcat</id>
<phase>pre-integration-test</phase>
<goals>
<goal>run</goal>
</goals>
</execution>
<execution>
<id>stop-tomcat</id>
<phase>post-integration-test</phase>
<goals>
<goal>shutdown</goal>
</goals>
</execution>
</executions>
</plugin>

知道为什么会这样吗?

最佳答案

我最终能够模拟您的问题。您需要为 tomcat7:run 指定 fork=true。这将允许 maven 在调用运行目标后继续执行。

   <execution>
<id>start-tomcat</id>
<phase>pre-integration-test</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<fork>true</fork>
</configuration>
</execution>

关于Maven tomcat 插件挂起,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32279990/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com