maven中使用tomcat插件启动,显示build success但无法继续启动的解决方法

Posted helen305250903

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了maven中使用tomcat插件启动,显示build success但无法继续启动的解决方法相关的知识,希望对你有一定的参考价值。

在tomcat插件配置中加一行


     <ignorePackaging>true</ignorePackaging>

 

告诉tomcat忽略是否有war包

 

 

<plugins>
   <plugin>
    <groupId>org.apache.tomcat.maven</groupId>
    <artifactId>tomcat7-maven-plugin</artifactId>
    <configuration>
     <ignorePackaging>true</ignorePackaging>
     <port>8080</port>
     <path>/</path>
    </configuration>
   </plugin>
  </plugins>

 

以上是关于maven中使用tomcat插件启动,显示build success但无法继续启动的解决方法的主要内容,如果未能解决你的问题,请参考以下文章

使用maven的tomcat插件启动时报错问题

如何将文件夹添加到由 maven cargo 插件启动的 Tomcat 容器的类路径中

淘淘商城系列——使用maven tomcat插件启动聚合工程

maven聚合工程tomcat插件启动没有 Starting ProtocolHandler ["http-bio-8081"]

淘淘商城系列——使用maven tomcat插件启动web工程

使用maven的插件(tomcat)启动web工程方法