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

Maven 配置tomcat 插件

时间:2020-07-26 23:03:18      阅读:64      评论:0      收藏:0      [点我收藏+]

标签:exec   center   服务器   tar   get   url   uri   als   tomcat   

Maven 配置tomcat 插件

一、pom.xml中加入插件配置

<plugin>

            <groupId>org.apache.tomcat.maven</groupId>

            <artifactId>tomcat7-maven-plugin</artifactId>

            <version>2.2</version>

               <configuration>

                  <path>/</path>

                  <port>8080</port>

                  <server>tomcat7</server>

               </configuration>

                <executions>

                    <execution>

                        <phase>package</phase>

                        <goals>

                            <goal>run</goal>

                        </goals>

                    </execution>

                </executions>

        </plugin>

配置说明

Port :服务器端口号

Path :项目发布的路径,默认就是tomcat/webapps目录,可以指定深层次目录,"/",则默认在webapps目录下部署ROOT.war

Url

uriEncoding : 设置编码

 

二、运行

右键项目,Run --> Maven bulid Goals

 

 技术图片

 

 

三、启动成功之后

在目录下 targettomcat 服务器的目录

 技术图片

 

Maven 配置tomcat 插件

标签:exec   center   服务器   tar   get   url   uri   als   tomcat   

原文地址:https://www.cnblogs.com/kali5k/p/13381869.html

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