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

<Configure id="Contexts" class="org.eclipse.jetty.server.handler.ContextHandlerCollection">
  <Call name="addHandler">
    <Arg>
      <New class="org.eclipse.jetty.webapp.WebAppContext">
	<Set name="contextPath">/jolokia</Set>
	<Set name="war"><Property name="jetty.base" default="."/>/lib/jolokia/jolokia.war</Set>
	<Set name="extractWAR">true</Set>
	<Set name="copyWebDir">false</Set>
	<Set name="defaultsDescriptor"><Property name="jetty.home" default="."/>/etc/webdefault.xml</Set>
      </New>
    </Arg>
  </Call>
</Configure>

Back to the top