Spring Security Remember me with custom authentication provider

前端 未结 1 1426
小鲜肉
小鲜肉 2021-01-26 00:00

I am using GWT with spring security. I have a custom authentication provider where I perform all my authentication. How can I configure the remember me feature without using the

相关标签:
1条回答
  • 2021-01-26 00:45

    You will need to create a custom UserDetailsService that gets the username/password from the same place that your loginmanager is reading it from. See the source for TokenBasedRememberMeServices.processAutoLoginCookie() to see how it's being used.

    0 讨论(0)
提交回复
热议问题