spring-session
spring-session copied to clipboard
Spring Session
https://github.com/spring-projects/spring-session/blob/5f5168814d9bf35bee3b8965ffde7bb1ae91cd93/spring-session-data-redis/src/main/java/org/springframework/session/data/redis/RedisIndexedSessionRepository.java#L428 In my particular case when I had to mock up this class in my tests, it's impossible to mock return type of `findById(String id)` method because instead of general...
We use spring session with redis in our spring boot app. In our usecase, most of the users do not send logout request. If logout request comes from the user,...
I've got problem with defining custom names for `SPRING_SESSION` & `SPRING_SESSION_ATTRIBUTES` tables. I can override just table name for `SPRING_SESSION` by `org.springframework.session.jdbc.JdbcOperationsSessionRepository#setTableName` BUT for I would like to have `org.springframework.session.jdbc.JdbcOperationsSessionRepository#setSessionAttributeTableName`...
I using redis json session, the savedRequest lose queryString field when deserialize
As per the `EventSource` [specification](https://html.spec.whatwg.org/multipage/server-sent-events.html#server-sent-events), browsers automatically reconnect to a Server-sent events endpoint if the connection closes. > Clients will reconnect if the connection is closed; a client can be...
Current optimizations on JDBC Session is good but still have large rooms for optimizations. Each commit of session is resetting state of session and after that each update there is...
If a request takes a long time to service, such as a long-polling request or SSE (Server-Sent Events) request, `SessionRepositoryFilter` can update the session's last-access time with a very stale...
In Microservice based applications especially, you have the task to do requests on behalf of the user. With Spring session the behavior suddenly changed and the session is now base64...
I’ve had a chance to continue implementing a Neo4j store for Spring Session, (shamelessly) modeled after the JBC implementation. Available from https://github.com/espiegelberg/spring-session-data-neo4j-ogm, this was initially submitted as https://github.com/spring-projects/spring-session/pull/813 but is...
When running the build I see warnings like this: ``` :spring-session-sample-javaconfig-redis:jar UP-TO-DATE :spring-session-sample-javaconfig-redis:integrationTest :spring-session-sample-javaconfig-redis:appAfterIntegrationTest 19:43:55.657 [localhost-startStop-1] INFO o.s.w.c.s.AnnotationConfigWebApplicationContext - Closing Root WebApplicationContext: startup date [Thu Sep 07 19:43:50 CDT 2017];...