gpt4 book ai didi

tomcat - Maven,如何运行外部Tomcat服务器

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

我有一些问题,我无法解决。我已经在 D:/server/tomcat7 中解压缩了 tomcat 服务器,我想从 maven 启动它,以便将来在那里部署我的 WebApp。但是我找不到如何配置外部文件夹来运行 tomcat。

如果我调用 cmd mvn tomcat:run,maven 将下载 tomcat 并运行它,但我需要从上面指定的文件夹启动服务器。

谢谢解答

最佳答案

您可以尝试使用 maven-exec-plugin 来通过 ${CATALINA_HOME}/bin 中的脚本来启动/停止 Tomcat:

  <plugin>  
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.1</version>
<executions>
<execution>
<id>stop-tomcat</id>
<phase>pre-clean</phase>
<goals>
<goal>exec</goal>
</goals>
<configuration>
<executable>${tomcat.stop.path}</executable>
</configuration>
</execution>
<execution>
<id>start-tomcat</id>
<phase>deploy</phase>
<goals>
<goal>exec</goal>
</goals>
<configuration>
<executable>${tomcat.start.path}</executable>
</configuration>
</execution>
</executions>
</plugin>

关于tomcat - Maven,如何运行外部Tomcat服务器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11415353/

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