码迷,mamicode.com
首页 > 其他好文 > 详细

在maven项目pom.xml中添加tomcat插件

时间:2018-01-10 13:50:47      阅读:1821      评论:0      收藏:0      [点我收藏+]

标签:port   端口   bsp   action   add   class   pom   host   根目录   

 1 <build>
 2 <!--插件 -->
 3 <plugins>
 4 <plugin>
 5 <groupId>org.apache.tomcat.maven</groupId>
 6 <artifactId>tomcat7-maven-plugin</artifactId>
 7 <version>2.2</version>
 8 <configuration>
 9 <!--端口号 -->
10 <port>8090</port>
11 <!--项目访问的根目录 
12 url:localhost:8090/项目名称/addUser.action
13 -->
14 <path>/</path>
15 </configuration>
16 </plugin>
17 </plugins>
18 </build>

 

在maven项目pom.xml中添加tomcat插件

标签:port   端口   bsp   action   add   class   pom   host   根目录   

原文地址:https://www.cnblogs.com/pxffly/p/8257810.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!