tomcat7和jetty启动的pom.xml配置
Posted wzjhoutai
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了tomcat7和jetty启动的pom.xml配置相关的知识,希望对你有一定的参考价值。
<plugins> <!-- tomcat7 --> <plugin> <groupId>org.apache.tomcat.maven</groupId> <artifactId>tomcat7-maven-plugin</artifactId> <version>2.2</version> <configuration> <useBodyEncodingForURI>true</useBodyEncodingForURI> <path>/</path> </configuration> </plugin> <!-- jetty --> <plugin> <groupId>org.mortbay.jetty</groupId> <artifactId>jetty-maven-plugin</artifactId> <version>7.6.15.v20140411</version> <configuration> <useTestClasspath>true</useTestClasspath> <webAppConfig> <contextPath>/</contextPath> </webAppConfig> </configuration> </plugin> </plugins>
jetty的启动方式
jetty:run -Djetty.port=8081
tomcat7的启动方式
tomcat7:run -Dmaven.tomcat.port=8080
以上是关于tomcat7和jetty启动的pom.xml配置的主要内容,如果未能解决你的问题,请参考以下文章
IntelliJ + Maven + 内Jetty 实现热部署项目
如何在pom.xml中配置“tomcat7-maven-plugin”?
Myeclipse中maven工程使用jetty插件启动jetty服务器调试