Is it possible to make custom implementation for RememberMeAuthenticationFilter?
greetings all i am using spring security 3.0.2 and i want when a remembered user requests a page after his token is being authenticated (onAuthenticationSuccess) do some coding before landing him to his request i got the idea to pr开发者_开发问答ovide a custom implementation of the RememberMeAuthenticationFilter but i don't know how to do so, so can anyone tell me or if there's a better way to do what i am trying to do ?
Perhaps you can subscribe to AuthenticationSuccessEvent
and check whether authentication
is RememberMeAuthenticationToken
.
精彩评论