diff --git a/build.gradle b/build.gradle index 9629650..2ffe5d0 100644 --- a/build.gradle +++ b/build.gradle @@ -16,7 +16,7 @@ apply plugin: 'maven-publish' apply plugin: 'com.jfrog.artifactory' group = 'com.dotcms' -version = '1.0' +version = '1.1' repositories { mavenCentral() @@ -28,13 +28,11 @@ compileJava { } dependencies { - compile group: 'org.apache.tomcat', name: 'tomcat-catalina', version: '9.0.41' - compile group: 'redis.clients', name: 'jedis', version: '4.4.1' - compile group: 'org.apache.commons', name: 'commons-pool2', version: '2.2' - compile group: 'commons-codec', name: 'commons-codec', version: '1.9' - implementation 'redis.clients:jedis:4.4.1' + compile group: 'org.apache.tomcat', name: 'tomcat-catalina', version: '9.0.41' + implementation 'redis.clients:jedis:4.4.6' + compile group: 'org.apache.commons', name: 'commons-pool2', version: '2.9.0' - testCompile group: 'org.apache.tomcat', name: 'tomcat-coyote', version: '9.0.41' + testCompile group: 'org.apache.tomcat', name: 'tomcat-coyote', version: '9.0.41' } task javadocJar(type: Jar, dependsOn: javadoc) { diff --git a/src/main/java/com/dotcms/tomcat/redissessions/RedisSession.java b/src/main/java/com/dotcms/tomcat/redissessions/RedisSession.java index 1b915f2..6753e55 100644 --- a/src/main/java/com/dotcms/tomcat/redissessions/RedisSession.java +++ b/src/main/java/com/dotcms/tomcat/redissessions/RedisSession.java @@ -98,11 +98,9 @@ public void resetDirtyTracking() { *
  • The {@code TOMCAT_REDIS_SESSION_PERSISTENT_POLICIES} contains the * {@link RedisSessionManager.SessionPersistPolicy#SAVE_ON_CHANGE} policy in it.
  • *
  • If it does, then at least one of the following criteria must be met:
  • - *
      - *
    1. Either the new value or the existing value of the added attribute ARE NOT NULL.
    2. - *
    3. The class of the new value compared to the existing value is different.
    4. - *
    5. The new value is actually different from the existing value.
    6. - *
    + *
  • Either the new value or the existing value of the added attribute ARE NOT NULL.
  • + *
  • The class of the new value compared to the existing value is different.
  • + *
  • The new value is actually different from the existing value.
  • * *

    * After this method executes, and if the object implements HttpSessionBindingListener, the container