I\'d like to track when users are logging in to my application. I have some code that I would like to execute right after the user is authenticated. The problem is, I can\'t fig
In case you want to continue with default behavior but just in between perform your own business logic, you may extend SimpleUrlAuthenticationSuccessHandler
and invoke super.onAuthenticationSuccess(request, response, authentication);
before you return. More details refer to https://stackoverflow.com/a/6770785/418439