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

maven插件jetty配置

时间:2015-04-11 21:05:47      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:maven jetty

<plugin>
	<groupId>org.eclipse.jetty</groupId>
	<artifactId>jetty-maven-plugin</artifactId>
	<version>9.2.3.v20140905</version>
	<configuration>
		<stopPort>9966</stopPort>
		<stopKey>stop</stopKey>
		<!-- Listen to port 8983 -->
		<httpConnector>
		        <port>8983</port>
        	        <idleTimeout>60000</idleTimeout>
		</httpConnector>
		<reload>automatic</reload> 
		<!-- Read system properties from profile specific configuration file -->
		<!--<systemPropertiesFile>${project.basedir}/profiles/${build.profile.id}/config.properties</systemPropertiesFile>-->
		<!-- Set the context path -->
		<webApp>
			<contextPath>/zhixin-search</contextPath>
		</webApp>
	</configuration>
</plugin>

启动:

mvn -Dslf4j=false -Dlog4j.configuration=file:./target/classes/log4j.properties jetty:run -Djetty.reload=automatic -Djetty.scanIntervalSeconds=10


本文出自 “梦朝思夕” 博客,请务必保留此出处http://qiangmzsx.blog.51cto.com/2052549/1631253

maven插件jetty配置

标签:maven jetty

原文地址:http://qiangmzsx.blog.51cto.com/2052549/1631253

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