首页 > 其他 > 详细

一段tomcat的maven插件配置

时间:2016-01-27 22:42:30      阅读:192      评论:0      收藏:0      [点我收藏+]
<plugin>
    <groupId>org.apache.tomcat.maven</groupId>
    <artifactId>tomcat7-maven-plugin</artifactId>
    <version>2.2</version>
    <configuration>
        <path>/</path>
        <!--和tomcat服务器通信时使用的url编码字符集-->
        <charset>UTF-8</charset>
        <uriEncoding>UTF-8</uriEncoding>
        <!--<port>80</port>-->
        <url>http://localhost:8080/manager/text</url>
        <username>manager</username>
        <password>tomcat</password>
        <update>true</update>
    </configuration>
</plugin>

指定了URL上字符编码格式, 服务端口; 部署用的用户名和密码(script manager)。

会根据文件修改更新服务器。

一段tomcat的maven插件配置

原文:http://www.cnblogs.com/silvestris/p/5164610.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!