-
Notifications
You must be signed in to change notification settings - Fork 144
/
Copy pathjetty.xml
20 lines (20 loc) · 863 Bytes
/
jetty.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0"?>
<!DOCTYPE Configure PUBLIC "-//Jetty//Configure//EN" "http://www.eclipse.org/jetty/configure.dtd">
<Configure id="testWebapp" class="org.eclipse.jetty.webapp.WebAppContext">
<Get id="sh" name="sessionHandler">
<Set name="sessionCache">
<New class="org.eclipse.jetty.server.session.DefaultSessionCache">
<Arg><Ref refid="sh"/></Arg>
<Set name="sessionDataStore">
<New class="org.eclipse.jetty.server.session.FileSessionDataStore">
<Set name="storeDir">
<New class="java.io.File">
<Arg>./jetty-sessions</Arg>
</New>
</Set>
</New>
</Set>
</New>
</Set>
</Get>
</Configure>