This project contains implementations of the Tomcat PersistentManager
Store.
Implementation | Description |
---|---|
redis-store | Redis store backend |
Pull requests are welcome. See the contributor guidelines for details.
Each branch, release, and pull request kicks off builds on Travis CI
This project uses SLF4J and defaults to Java Utils Logging (JUL) binding
In case you want to use another one you must to package your binder and explicit remove the JUL dependency:
<dependency>
<groupId>com.gopivotal.manager</groupId>
<artifactId>session-managers</artifactId>
<version>${session-managers.version}</version>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-jdk14</artifactId>
</exclusion>
</exclusions>
</dependency>
This project is released under the Apache License, Version 2.0.