Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: b958074e5da7f8d8e0990ac62f16e6f0536143af (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?xml version="1.0"?>
<!DOCTYPE Configure PUBLIC "-//Jetty//Configure//EN" "http://www.eclipse.org/jetty/configure_9_0.dtd">

<!-- =============================================================== -->
<!-- Mixin the Start FileNoticeLifeCycleListener                     -->
<!-- =============================================================== -->
<Configure id="Server" class="org.eclipse.jetty.server.Server">
  <Call name="addLifeCycleListener">
    <Arg>
      <New class="org.eclipse.jetty.util.component.FileNoticeLifeCycleListener">
        <Arg><Property name="jetty.state" default="./jetty.state"/></Arg>
      </New>
    </Arg>
  </Call>
</Configure>

Back to the top