Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: cc00e4a166a304a4b3584c6c5f9bce6342e51467 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#
# Jetty JDBC Session module
#

[depend]
annotations
webapp

[xml]
etc/jetty-jdbc-sessions.xml


[ini-template]
## JDBC Session config

## Unique identifier for this node in the cluster
jetty.jdbcSession.workerName=node1

## The interval in seconds between sweeps of the scavenger
jetty.jdbcSession.scavenge=600

##Uncomment either the datasource name or driverClass and connectionURL
#jetty.jdbcSession.datasource=sessions
#jetty.jdbcSession.driverClass=changeme
#jetty.jdbcSession.connectionURL=changeme


Back to the top