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

tomcat-maven-plugin 插件使用

时间:2016-08-28 16:17:20      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:

配置

在pom.xm 加入以下xml。

<plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>tomcat-maven-plugin</artifactId>
                <version>1.1</version>
                <configuration>
                    <path>/wp</path>
                    <port>8080</port>
                    <uriEncoding>UTF-8</uriEncoding>
                    <url>http://localhost:8080/manager/html</url>
                    <server>tomcat6</server>
                </configuration>
            </plugin>

 

简要说明一下:

path  是访问应用的路径

port 是tomcat 的端口号

uriEncoding  URL按UTF-8进行编码,这样就解决了中文参数乱码。

Server 指定tomcat名称。

配置就这么简单,基本搞掂,下面看看如何使用。

tomcat-maven-plugin 插件使用

标签:

原文地址:http://www.cnblogs.com/qiumingcheng/p/5815033.html

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