aws-dynamodb-session-tomcat
aws-dynamodb-session-tomcat copied to clipboard
ARCHIVED: Amazon DynamoDB based session store for Apache Tomcat
Dynamodb has TTLs for data now. Any chance this could be added? http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/TTL.html
my environment is.. Tomcat 8.0.21 aws-dynamodb-session-tomcat-2.0.4.jar and.. ELB I find this error... com.amazonaws.tomcatsessionmanager.amazonaws.services.dynamodb.sessionmanager.DynamoDBSessionStore.load Unable to load session with id A8CD4D57264D348EA8F5E015F778833D What should I do.??
Infinite loop if HttpRequest.getSession(false) called during HttpSessionListener::sessionCreated()
``` public class MySessionListener implements HttpSessionListener { @Override public void sessionCreated(HttpSessionEvent se) { ((ServletRequestAttributes) RequestContextHolder .getRequestAttributes()).getRequest().getSession(false); } ``` This causes infinite loop since `getSession(false)` tries to create a new session...
Arreglada compatibilidad con tomcat 8.5
I understand the necessity of creation of a Strings Constant class. It is because there is a better organization, facility when a maintenance will be done and performance in memory...
The main premise was to add a column to the session dynamodb table to enable TTL on. I also added the flexibility to disable the Reaper as TTL will be...
- remove deprecated method calls; - upgrade tomcat and aws sdk version;