码迷,mamicode.com
首页 > 其他好文 > 详细

maven jetty 插件支持

时间:2016-11-25 19:37:05      阅读:193      评论:0      收藏:0      [点我收藏+]

标签:cto   ann   cti   color   pre   org   pat   sel   eclips   

<build>
<finalName>Spring-solr</finalName>

<plugins>

<!-- jetty插件, 设定context path与spring profile -->
<plugin>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<configuration>
<scanIntervalSeconds>3</scanIntervalSeconds>
<connectors>
<connector implementation="org.eclipse.jetty.server.nio.SelectChannelConnector">
<port>8093</port>
<maxIdleTime>60000</maxIdleTime>
</connector>
</connectors>
<webAppConfig>
<contextPath>/${project.artifactId}</contextPath>
</webAppConfig>
<stopKey>solr</stopKey>
<stopPort>9090</stopPort>
</configuration>
</plugin>

</plugins>

</build>

maven jetty 插件支持

标签:cto   ann   cti   color   pre   org   pat   sel   eclips   

原文地址:http://www.cnblogs.com/yaoyao66123/p/6102466.html

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