spring-session Questions
2
I've built a REST API service using Spring where I've enabled sessions using MongoDB:
@Configuration
@EnableMongoHttpSession(maxInactiveIntervalInSeconds = Globals.SESSION_MAX_INTERVAL)
public cla...
Tav asked 27/7, 2018 at 10:37
3
Solved
I have been really been searching high and low for the last few days on how to do this and have finally decided to admit defeat and ask for help, please!!!
I have followed Dr Dave Syer's tutorial ...
Eldreeda asked 12/1, 2016 at 18:57
2
Solved
My application currently use Spring Session together with Redis as the backend.
I searched into the official documentation for Spring Session but was not able to find what the default session timeo...
Stint asked 10/9, 2015 at 12:11
5
Solved
I have a project with Spring Boot 1.3.3 [another stuff] and Redis configurated to manage sessions, i.e., @EnableRedisHttpSession. The application works well and stores the information on Redis regu...
Electrolysis asked 18/5, 2016 at 15:25
2
Solved
We are using an architecture very similar to the one described in this great guide on spring.io. Our gateway handles authentication, and sessions are stored in Redis using spring-session. Endpoints...
Discomfort asked 7/8, 2015 at 10:10
1
Why does not spring.session.store-type has in memory option. ?
Is there any way to use spring session with in memory option without writing my implementation of store ?
I would like to use sprin...
Ringleader asked 18/1, 2019 at 7:40
3
Solved
Thanks a lot in advance for reading this question.
Setup
I am using:
spring-security-oauth2:2.0.7.RELEASE
spring-cloud-security:1.0.1.RELEASE
spring-session:1.0.1.RELEASE
and would have a que...
Furthest asked 22/6, 2015 at 9:38
1
Solved
I am trying to store a JsonNode to my spring jdbc session,
while when the data is set and ready to insert to database by spring, ConversionFailedException was throw.
I tried the same as mentioned i...
Phrase asked 7/11, 2018 at 7:36
2
Solved
After configuring spring-session-data-redis in a demo spring-boot project, bootRun task fails with the following message:
***************************
APPLICATION FAILED TO START
******************...
Bronwynbronx asked 8/8, 2018 at 8:46
1
I have an application that is integrated with spring security. I separated this application to two app for this I want to config spring session with Redis for centralization authentication between ...
Korte asked 1/6, 2017 at 9:20
1
Solved
I'm trying to learn Spring Boot by writing a simple REST application that would log users in (POST /login) and display info about current user (GET /). I'm using Redis for sessions.
POST /login w...
Bounden asked 3/6, 2018 at 16:50
1
When attempting to add spring-session to an existing Spring MVC project with spring-security, I get the following behavior (EDIT: with tomcat's session-timeout set to 1 minute for testing):
With ...
Fructify asked 4/5, 2016 at 14:36
1
Solved
I'm following this tutorial to add spring session (through redis) to my application. http://www.baeldung.com/spring-session
I add the dependencies
<dependency>
<groupId>org.springfr...
Teishateixeira asked 7/4, 2018 at 15:43
1
Solved
I have this sample application:
package com.example.session;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.spr...
Logo asked 8/1, 2018 at 15:22
1
I have a spring boot (version 1.5.9.RELEASE) application which uses spring-session to store sessions on Redis. It also uses spring-security to authenticate users. When running the application, afte...
Conventionalize asked 10/1, 2018 at 13:56
4
Solved
So, Im using spring session in my project.
How to write integration tests in project using it? Should I mock something for spring session internals? Or any reasonable way to use embedded redis?
I...
Hesitate asked 8/10, 2015 at 7:2
1
Solved
Currently I was experiencing the new Spring reactive stack, and want to use reactive features in Spring Session 2.0.
In traditional Servlet approach, Spring Session provides a HttpSessionStrategy ...
Hillell asked 14/10, 2017 at 14:10
1
Solved
Is there any EOL( end of life) and EOVS( end of vendor support) dates for spring libs like spring boot, spring cloud, spring session etc? If yes where can I find these information for each ve...
Graycegrayheaded asked 4/10, 2017 at 9:31
2
I am writing a small app with a spring boot rest based backend and a polymer dart based frontend.
Currently I'm struggling to receive the session id from the login mechanism...
Initially I planne...
Heidelberg asked 1/2, 2015 at 15:6
1
I have some applications with Spring Boot, Spring Security, Spring Sessions and Spring Redis.
One of my applications (I will call it "Permissions") is responsible for providing a login service to ...
Lycaonia asked 19/9, 2016 at 21:33
0
I am building a small websocket project and secured by JWT token mechanism and I would like to store websocket sessions in redis not local memory.
@Override
protected void configureStompEndpoints(...
Overdraft asked 8/2, 2017 at 3:45
1
Solved
I am using Spring Security and Spring Session (v1.3.1) in my application.
I would like to use SpringSessionBackedSessionRegistry as my Session Registry and Redis as my Session repository.
The co...
Voltameter asked 6/1, 2017 at 2:53
2
Solved
I have questions on the following areas: spring-session and spring-security.
Spring Session
I have a application protected with Spring Security through basic in-memory authentication as provided in...
Jerk asked 6/4, 2015 at 21:16
2
Background
Hey all,
We have Spring project which uses Spring security. We have defined the security filters by defining
<b:bean id="springSecurityFilterChain" class="org.springfr...
Bagging asked 8/9, 2015 at 13:41
1
I am trying to store spring session in oracle Db through spring xml based configuration.
I have manually created the tables (SPRING_SESSION and SPRING_SESSION_ATTRIBUTES) provided in schema-oracle...
Firecure asked 30/6, 2016 at 14:21
© 2022 - 2025 — McMap. All rights reserved.