首页 > 其他 > 详细

maven jetty 插件支持

时间:2016-11-25 19:35:28      阅读:277      评论:0      收藏:0      [点我收藏+]
<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 插件支持

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!