Skip to main content

All Questions

0 votes
0 answers
19 views

when user login the system,if he hasn't operated a long time,how to logout the system and skip to login page

I want to achieve this function:when user login the system,if he hasn't operated a long time,how to logout the system and skip to login page? I use a filter class which implements Filter,and when ...
rain-sh's user avatar
  • 11
0 votes
0 answers
53 views

Spring Session - Cookie Based Authentication's sessionToken leads to vulnerability

In my spring application, I have implemented spring security and cookie based authentication using spring session management whith redis server for storing sessions. In my application after login the ...
Bharathidhasan's user avatar
1 vote
0 answers
181 views

Spring Boot session based authentication post login other requests are not getting autheticated

I am trying to create a spring boot app which will expose a set of apis. Initially there will be a call to an authentication api, which sets a session cookie and then subsequent requests will send ...
Pinaki's user avatar
  • 483
0 votes
0 answers
924 views

Spring Session with Redis and Spring Security

I'm having spring MVC application where the session management is done using redis and whenever I need to retrieve current logged in user I use Securitycontextholder.getcontext().getAuthentication(). ...
Sagar Pandit's user avatar
0 votes
1 answer
724 views

SSO - another application user wants to access my application

I have two applications called like app1 and app2. both apps have there own users separately. Now suppose user with user-name usr1 from app1 logged into app1. Now he want to access app2 without ...
bytegroup's user avatar
0 votes
1 answer
573 views

Spring Boot custom implementation of UserDetails

I am trying to settup session management for spring boot 2 with spring security, and i have custoom class with implements UserDetails interface, as i know from documentation i need ovveride methods: ...
Dmytro Ileiko's user avatar
1 vote
1 answer
3k views

Client-side cookie-based authentication with Spring Security

We have a fully-working back-end login POST service, implemented using Spring Security, along with Spring Boot and Spring Session. A user needs to be logged-in in order to access other services. The ...
bohemian's user avatar
  • 159
1 vote
1 answer
2k views

Setting authentication true with Spring Security + Spring Session

I have a Spring Security + Spring Session + Spring Boot project and a Controller with a custom login POST method. I have my own means to verify the credentials of the customer. Once the verification ...
bohemian's user avatar
  • 159
1 vote
1 answer
3k views

spring-boot user session not added to context after login when switching from https to http

I have a spring-boot 1.3.5.RELEASE with spring security 4.1.0.RELEASE application and the users are getting redirected to the login page after the first time they input username and password. The ...
Alex Burdusel's user avatar
0 votes
1 answer
165 views

Consuming secured webservice (Spring Session)

I've implemented my Application like shown in this Example http://spring.io/blog/2015/01/20/the-resource-server-angular-js-and-spring-security-part-iii There is a UiApplication(Port 8080) and two ...
Yannic Bürgmann's user avatar