Probably the answer is simple: How can I manually logout the currently logged in user in spring security? Is it sufficient to call:
SecurityContextHolder.getContext().getAuthentication().setAuthenticated(false);
?
|
Probably the answer is simple: How can I manually logout the currently logged in user in spring security? Is it sufficient to call:
? |
|||
|
|
When it comes to sessionRegistry, it does not work quite as it should in my application. Method in my service:
file resources.groovy:
Namely sessionRegistry really gets active sessions for each user, but by calling:
The result is that calling expireSession (user) for the same user again, the session is no longer visible. Which is understandable because it has expired. But in spite of expired user session. He may continue to work in the application. The application does not log you off. I use: grails 2.2.1, spring-security 1.2.7.3 :) |
|||
|
|
|
It's hard for me to say for sure if your code is enough. However standard Spring-security's implementation of logging out is different. If you took a look at
Moreover they optionally invalidate the HttpSession:
You may find more information in some other question about logging out in Spring Security and by looking at the source code of |
|||
|
|
|
To log out a user in a web application you can also redirect him to the logout page. The LogoutFilter is then doing all the work for you. The url of the logout page is set in the security configuration:
|
|||||||
|
|
You can also use SessionRegistry as:
If you want to force logout in all sessions of a user then use Edit |
||||
|
|
|
I use the same code in LogoutFilter, reusing the LogoutHandlers as following:
|
|||
|
|
|
Simply do like this (the ones commented by "concern you") :
|
||||
|
|