码迷,mamicode.com
首页 > Web开发 > 详细

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

时间:2018-10-04 10:46:07      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:path   --   style   启动   引入   artifact   art   org   pid   

一、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

标签:path   --   style   启动   引入   artifact   art   org   pid   

原文地址:https://www.cnblogs.com/bjlhx/p/9740045.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!