<dependency>
<groupId>org.jooby</groupId>
<artifactId>jooby-ehcache</artifactId>
<version>{{version}}</version>
</dependency>This module provides an EhSessionStore. In order to use the EhSessionStore all
you have to do is define a session cache:
ehcache.cache.session {
# cache will expire after 30 minutes of inactivity
timeToIdle = 30m
}And then register the EhSessionStore:
{
session(EhSessionStore.class);
}