一段tomcat的maven插件配置
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了一段tomcat的maven插件配置相关的知识,希望对你有一定的参考价值。
<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插件配置的主要内容,如果未能解决你的问题,请参考以下文章