maven插件jetty配置--自动加载变化

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<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>

启动:

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


重新加载会耗费大量内存,这也是一个通病!


本文转自 梦朝思夕 51CTO博客,原文链接:http://blog.51cto.com/qiangmzsx/1631253


上一篇:关系计划笔谈(9-4):项目化生产和能力单元(实例分析部分)


下一篇:解决:eth0网卡无法自动加载,网卡配置信息不在network-scripts中