spring-session
spring-session copied to clipboard
Spring Session
Bumps [io.spring.ge.conventions](https://github.com/spring-io/gradle-enterprise-conventions) from 0.0.16 to 0.0.17. Release notes Sourced from io.spring.ge.conventions's releases. v0.0.17 :star: New Features Add a custom value for the detected CI provider #77 Support the com.gradle.develocity plugin...
**Expected Behavior** To have the option to use NATS JetStream Key/Value store instead of Redis as a distributed storage for sessions. **Current Behavior** NATS JetStream Key/Value store is not supported....
While looking at [this Spring Boot issue](https://github.com/spring-projects/spring-boot/issues/31510), I learned of the existence of `@SpringSessionRedisConnectionFactory` by noticing its usage in `RedisHttpSessionConfiguration`. It would be good if the annotation was mentioned in...
Bumps [io.spring.ge.conventions](https://github.com/spring-io/gradle-enterprise-conventions) from 0.0.16 to 0.0.17. Release notes Sourced from io.spring.ge.conventions's releases. v0.0.17 :star: New Features Add a custom value for the detected CI provider #77 Support the com.gradle.develocity plugin...
Bumps [io.spring.ge.conventions](https://github.com/spring-io/gradle-enterprise-conventions) from 0.0.16 to 0.0.17. Release notes Sourced from io.spring.ge.conventions's releases. v0.0.17 :star: New Features Add a custom value for the detected CI provider #77 Support the com.gradle.develocity plugin...
With https://github.com/spring-projects/spring-session/issues/2170 MongoSession was made package private. The problem with that is, that if someone, as we do, implements `AbstractMongoSessionConverter` to support custom `convert` implementations (for DBObject and back), it...
**Expected Behavior** The `SessionRepositoryFilter` can be applied conditionally. **Current Behavior** The `SessionRepositoryFilter` **cannot** be applied conditionally. **Context** We are working on a legacy giant project and we want to migrate...
Despite RedisIndexedSessionRepository's efforts to automatically remove expired sessions from its principal index, it is possible for expired sessions to remain in that index due to misses from at least these...
https://github.com/spring-projects/spring-session/blob/a6b97e5913690f01f418a3eb3b36113842ce9de6/spring-session-data-mongodb/src/main/java/org/springframework/session/data/mongo/JdkMongoSessionConverter.java#L66 This attrb is required for create JdkMongoSessionConverter, however is never used to set in the interval. I know I can set this interval from "@EnableMongoHttpSession", but it is can...
I noticed that the session gets read twice at https://github.com/spring-projects/spring-session/blob/4dc81ec10d0e2870bb6f208df924b2ab933a835e/spring-session-data-redis/src/main/java/org/springframework/session/data/redis/ReactiveRedisIndexedSessionRepository.java#L441-L442 This alters the code to only read it once.