spring-session
spring-session copied to clipboard
Spring Session
Provided a draft implementation of `HazelcastReactiveSessionRepository` which gives an asynchronous access to stored in Hazelcast sessions and may benefits resources utilization and apps performance. This PR is for running the...
**Expected Behavior** Similar as the JDBC one, but for reactive applications. **Current Behavior** There is none. **Context** How has this issue affected you? * Currently have to deploy separate infrastructure...
**Expected Behavior** `spring-session-hazelcast` should be modified to use latest features of Hazelcast, so that is easier to deploy. **Current Behavior** For example, https://github.com/spring-projects/spring-session/issues/1131 The EntryProcessor is based on `java.io.Serializable` and...
The documentation should better explain the most common use cases for Spring Session and how to configure the application to achieve that. The documentation as it is today has only...
We should probably review Servlet spec on session semantics in distributed environments and see whether Spring Session needs some alignment there. This especially goes for session events, where Spring Session...
**Describe the bug** When using spring-session-jdbc, MockMvc's `MockHttpServletRequestBuilder#session` is ignored. It seems as though once `SessionRepositoryFilter` is added to the filter chain, it ignores any session configured by `mockMvc` **To...
As a part of simplifications of integration with the Servlet APIs that was done in #906, the existing support for multiple sessions for a single user was removed. We should...
**Describe the bug** version:2.4.3 when a user after logging in , RedisIndexedSessionRepository will add sessionid to redis key: "sessionAttr:org.springframework.session.FindByIndexNameSessionRepository.PRINCIPAL_NAME_INDEX_NAME" type of set, the question is if you set save-mode to...
Hello, The implementation within org.springframework.session.data.redis.RedisOperationsSessionRepository puts the attribute, to be removed, back into Redis and nulls out the value. This breaks consistency with the cached session attributes and creates an...
**Expected Behavior** The Spring Session should authenticate session by getting the `X-Auth-Token` header's value for the WebSocket endpoint. Currently, only REST endpoint that authenticates session if the `X-Auth-Token` header is...