Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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); 

?

share|improve this question
Thanks a lot for your answers guys, I'll check them out. – Erik Apr 20 '11 at 14:27

6 Answers

up vote 1 down vote accepted

When it comes to sessionRegistry, it does not work quite as it should in my application. Method in my service:

def expireSession(User user) {          
    def orginalUser = springSecurityService?.principal.username
    springSecurityService?.reauthenticate(user?.email)  //modified user eg: test@app.com
    springSecurityService?.reauthenticate(orginalUser)  //admin eg: admin@app.com

    sessionRegistry.getAllPrincipals()?.each { princ ->         
        sessionRegistry.getAllSessions(princ, false);
        if(princ?.username?.equals(user?.email)) {      //killing sessions only for user (test@app.com) 
            sessionRegistry.getAllSessions(princ, false)?.each { sess ->
                sess.expireNow()                
            }
        }//if
    }//each
}//expireSession

file resources.groovy:

beans = {
    sessionRegistry(SessionRegistryImpl) 
    sessionAuthenticationStrategy(ConcurrentSessionControlStrategy, sessionRegistry) { 
            maximumSessions = -1 
    } 
    concurrentSessionFilter(ConcurrentSessionFilter){ 
            sessionRegistry = sessionRegistry 
            expiredUrl = '/login/concurrentSession' 
    } 
}//beans

Namely sessionRegistry really gets active sessions for each user, but by calling:

sess.expireNow();

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 :)

share|improve this answer

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 SecurityContextLogoutHandler you would see they do:

    SecurityContextHolder.clearContext();

Moreover they optionally invalidate the HttpSession:

    if (invalidateHttpSession) {
        HttpSession session = request.getSession(false);
        if (session != null) {
            session.invalidate();
        }
    }

You may find more information in some other question about logging out in Spring Security and by looking at the source code of org.springframework.security.web.authentication.logout.SecurityContextLogoutHandler.

share|improve this answer
You'll also want to drop the rememberme cookie if that is set. – sourcedelica Apr 20 '11 at 13:08

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:

<sec:http ...>
  ...
  <sec:logout logout-url="/logout" logout-success-url="/login?logout_successful=1" />
  ...
</sec:http>
share|improve this answer
This didnt work for me. Its not as simple as you suggest. Any more configuration details? – djangofan Nov 30 '12 at 4:14
There should be no other configuration necessary for this to work. You simply redirect the user to an URL like "example.com/yourctx/logout";. – James Nov 30 '12 at 7:55
I got it working but i had to restart Tomcat for it to start working. – djangofan Nov 30 '12 at 17:33

You can also use SessionRegistry as:

sessionRegistry.getSessionInformation(sessionId).expireNow();

If you want to force logout in all sessions of a user then use getAllSessions method and call expireNow of each session information.

Edit
This requires ConcurrentSessionFilter (or any other filter in the chain), that checks SessionInformation and calls all logout handlers and then do redirect.

share|improve this answer

I use the same code in LogoutFilter, reusing the LogoutHandlers as following:

public static void myLogoff(HttpServletRequest request, HttpServletResponse response) {
    CookieClearingLogoutHandler cookieClearingLogoutHandler = new CookieClearingLogoutHandler(AbstractRememberMeServices.SPRING_SECURITY_REMEMBER_ME_COOKIE_KEY);
    SecurityContextLogoutHandler securityContextLogoutHandler = new SecurityContextLogoutHandler();
    cookieClearingLogoutHandler.logout(request, response, null);
    securityContextLogoutHandler.logout(request, response, null);
}
share|improve this answer

Simply do like this (the ones commented by "concern you") :

    Authentication auth = SecurityContextHolder.getContext().getAuthentication(); // concern you

    User currUser = userService.getUserById(auth.getName()); // some of DAO or Service...

    SecurityContextLogoutHandler ctxLogOut = new SecurityContextLogoutHandler(); // concern you

    if( currUser == null ){
        ctxLogOut.logout(request, response, auth); // concern you
    }
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.