008-插件方式启动web服务tomcat,jetty

Posted 木子旭

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了008-插件方式启动web服务tomcat,jetty相关的知识,希望对你有一定的参考价值。

一、pom引入

1、tomcat7

<!-- 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>  

使用

tomcat7:run -Dmaven.tomcat.port=8080  

2、jetty

<!-- 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>  

使用

jetty:run -Djetty.port=8081  

 

以上是关于008-插件方式启动web服务tomcat,jetty的主要内容,如果未能解决你的问题,请参考以下文章

idea启动web项目没有tomcat

web项目tomcat启动url自定义(去掉项目名)

开微服务项目tomcat更换成undertow

idea解决tomcat插件启动项目问题

tomcat服务器中的web应用程序部署在哪个物理位置

Tomcat 插件启动 Web程序