修改tomcat-maven-plugin启动端口

在pom.xml文件里的plugins节点上配置:

<plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>tomcat-maven-plugin</artifactId>
    <version>1.0-beta-1</version>
    <configuration>
     <port>9999</port>
    </configuration>
 </plugin>

你可能感兴趣的:(maven,tomcat,xml)