Integrate UserDetailsChecker into ReactiveAuthenticationManager & OAuth2 resource server implementations
See original GitHub issueI propose adding a reactive version of UserDetailsChecker
along with an implementing class that mirrors the AccountStatusUserDetailsChecker
.
This is frequently used when combined with a UserDetailsService
for checking the status of a user’s account and we need this on the reactive side as well.
It also needs to be tied into the ReactiveAuthenticationManager
implementations (i.e. UserDetailsRepositoryReactiveAuthenticationManager
). I would say we open a separate ticket for that integration and we keep this ticket just for the introduction of the ReactiveUserDetailsChecker
.
I’m happy to supply a PR for this as I already have it built and could submit it pretty quickly.
Issue Analytics
- State:
- Created 5 years ago
- Comments:5 (5 by maintainers)
Top Results From Across the Web
OAuth 2.0 Resource Server With Spring Security 5 - Baeldung
Learn how to configure a Spring Security based resource server application for validating JWT as well as opaque tokens.
Read more >OAuth 2.0 Resource Server :: Spring Security
A complete working example for JWTs is available in the Spring Security repository. Minimal Dependencies for JWT. Most Resource Server support is collected...
Read more >spring boot - How to implement resource server without using jwt
I wonder if I use webflux and oauth2 without using jwt, I want to store token in redis, how can I configure the...
Read more >Consuming an endpoint protected by an OAuth 2 resource ...
1.2 Implementing the client responsibility with Spring Security · We already have an authorization server and a resource server · The resource server...
Read more >Using Spring Boot for OAuth2 and JWT REST Protection - Toptal
This article is a guide on how to setup a server-side implementation of JSON Web ... The app acts both as OAuth2 authorization...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
I opened #6229 for this.
I’ll rename this ticket then to something more appropriate for integrating
UserDetailsChecker
into theReactiveAuthenticationManager
implementations.I’m happy to supply a PR for it as well.