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

jetty 热部署

时间:2016-08-13 10:07:01      阅读:575      评论:0      收藏:0      [点我收藏+]

标签:

1,在pom.xml文件中配置jetty插件的参数:scanIntervalSeconds

 

<plugin>
                <groupId>org.mortbay.jetty</groupId>
                <artifactId>jetty-maven-plugin</artifactId>
                <configuration>
                    <scanIntervalSeconds>1</scanIntervalSeconds>
                    <stopPort>8080</stopPort>
                    <stopKey>bar</stopKey>
                    <connectors>
                        <connector implementation="org.eclipse.jetty.server.nio.SelectChannelConnector">
                            <port>8080</port>
                            <maxIdleTime>60000</maxIdleTime>
                        </connector>
                    </connectors>
                    <webAppConfig>
                        <contextPath>/</contextPath>
                    </webAppConfig>
                </configuration>
            </plugin>

 

2、以debug模式运行项目。

 

jetty 热部署

标签:

原文地址:http://www.cnblogs.com/yanyd/p/5767278.html

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