如何在maven中的项目使用tomcat插件
Posted 杨-先森
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在maven中的项目使用tomcat插件相关的知识,希望对你有一定的参考价值。
在pom.xml中引入tomcat7插件,具体示例代码如下:
<project>
<build>
<plugins>
<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<version>2.1</version>
<configuration>
<port>8080</port>
<path>/</path>
<uriEncoding>UTF-8</uriEncoding>
<server>tomcat7</server>
</configuration>
</plugin>
</plugins>
</build>
</project>
配置run tomcat
以上是关于如何在maven中的项目使用tomcat插件的主要内容,如果未能解决你的问题,请参考以下文章
eclipse中的maven的web项目怎么部署到tomcat中