spring-session
spring-session copied to clipboard
Spring Session
We should provide a way for Spring Session to programmatically disable Spring Security's CSRF support on requests in which x-auth-token is used for establishing the session. We could perhaps disable...
Add the Session to a SessionContextHolder similar to SecurityContextHolder. The SessionContextHolder would store the Session in a ThreadLocal. This will allow users to access the current Session anywhere within their...
See #838 for background (and more specifically [this comment](https://github.com/spring-projects/spring-session/issues/838#issuecomment-736086339)). The approach with a single SQL statement based session clean-up job has been historically been somewhat problematic, seeing several revisions to...
See #1606 for background. There have also been similar inquiries earlier. The reference manual should be more explicit about production considerations for configuring Redis keyspace notifications.
We could consider exposing some session related metrics using Micrometer.
**Describe the bug** For a valid session, SessionRepositoryFilter.SessionRepositoryRequestWrapper.commitSession() does the following: 1. Clears cached values for references for requestedSessionCache, requestedSession, and requestedSessionId. 1. Saves the state of the session 1....
When Spring Session used in the application was upgraded from **1.3.1.RELEASE** to **2.1.3.RELEASE**, performance was verified and it was confirmed that the CPU utilization has increased by about 10%. When...
The GitHub Actions CI workflow for 2.4.x is configured to run daily at 10am UTC, but that does not happen. Perhaps it is because GitHub Actions cannot differentiate between the...
I opened a question on Stack Overflow but got no anwser yet, see https://stackoverflow.com/questions/69346392/spring-session-redis-web-session-expiration-notifications-not-delayed-until-appl **Current Behavior** Currently using Spring Session Redis in a Spring Boot 2.5.3 web application. The application...