1. 程式人生 > >maven修改tomcat

maven修改tomcat

fir pom.xml maven 文件 nbsp 運行 .com group inf

添加tomcat插件

項目上右鍵---maven---add plugin

技術分享圖片

修改pom.xml配置文件

<build>
       <plugins>
           <plugin>
               <groupId>org.codehaus.mojo</groupId>
               <artifactId>tomcat-maven-plugin</artifactId>
               <version>1.1</version>
               <
configuration> <port>8088</port> <path>/first</path> </configuration> </plugin> </plugins> </build>

運行項目,產生新的訪問地址

技術分享圖片

maven修改tomcat