tomcat7-maven-plugin 端口

Posted 幻林的地盘

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了tomcat7-maven-plugin 端口相关的知识,希望对你有一定的参考价值。

不知道有没有人像我这样,在pom配置了下面这段之后,

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

下一步右键maven build,写上clean tomcat:run之后,发现启动的端口并不是配置的端口8090,

并且路径也不是 /  ,而是 Running war on http://localhost:8080/xxxx。

怎么search 8080 都没有,其实问题出在clean tomcat:run,改成clean tomcat7:run,OK,你们问题解决没有?

 

以上是关于tomcat7-maven-plugin 端口的主要内容,如果未能解决你的问题,请参考以下文章

USB 2.0高速4端口USB HUB集线处理器MA8601

maven插件介绍之tomcat7-maven-plugin

Java tomcat7-maven-plugin 在哪配置启动的根目录

如何在pom.xml中配置“tomcat7-maven-plugin”?

tomcat7-maven-plugin能不能运行Tomcat9

使用tomcat7-maven-plugin部署Maven Web项目