tomcat7完整的插件
Posted 小风扇A
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了tomcat7完整的插件相关的知识,希望对你有一定的参考价值。
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<version>2.2</version>
<configuration>
<!-- 指定端口 -->
<port>8082</port>
<!-- 请求路径 -->
<path>/</path>
</configuration>
</plugin>
以上是关于tomcat7完整的插件的主要内容,如果未能解决你的问题,请参考以下文章