is OAuth2 Authorization server supported by Spring WebFlux?

Viewed 1809

is OAuth2 Authorization server supported by Spring WebFlux? I mean is it possible to develop a reactive OAuth2 Authorization server in Spring? if no, when it will be added to the framework?

2 Answers

I think no, Authorization server is out of their roadmap. Starting from november the 13th every class in spring security which worked with Authorization server features become deprecated.

Spring Security OAuth 2.0 Roadmap Update (here the answer on you question)

@mhrsalehi, please checkout my repo. I added an implementation of old OAuth2 Authorization server for webflux. Currently only support /oauth/token if you want support for any other endpoints please submit a ticket or PR.

Github: spring-reactive-authorization-server

Related