读书人

maven惯用插件之jetty

发布时间: 2013-03-21 10:08:17 作者: rapoo

maven常用插件之jetty
1234567891011<plugin>????<groupId>org.mortbay.jetty</groupId>????<artifactId>jetty-maven-plugin</artifactId>????<version>8.0.1.v20110908</version>????<configuration>????????<scanIntervalSeconds>10</scanIntervalSeconds>????????<webAppConfig>????????????<contextPath>/demo</contextPath>????????</webAppConfig>????</configuration></plugin>



mvn jetty:run ? ?在jetty中运行maven项目,默认的端口号8080
mvn jetty:run -Djetty.port=8082 ? ??在jetty中运行maven项目,端口号改成8082

项目的访问路径为:http://localhost:8082/demo
如果 <contextPath>/demo</contextPath>设置为 <contextPath>/</contextPath>,
则访问路径为:http://localhost:8082

读书人网 >互联网

热点推荐