My requirement is to implement oauth 2 using spring boot.
It's for dynamic client registration(client id ,client secret ….) to be stored in the database, not in memory.
The first option I see is using spring-security-oauth2. But as per docs
https://spring.io/projects/spring-security-oauth.
It says Spring Security OAuth is deprecated and The latest OAuth 2.0 support is provided by Spring Security.
Spring Security OAuth being deprecated I won’t be using it for my current implementation.
Now the option I have now is to use it from Spring Security. Bu as per docs https://github.com/spring-projects/spring-security/wiki/OAuth-2.0-Migration-Guide it says Spring Security doesn’t provide Authorization Server support.
Now here I am confused about what shall I do either use Spring Security OAuth which is deprecated or wait for Spring Security to provide Authorization Server support. I want to have advice from an expert . Is there any tutorial to achieve it without Spring Security OAuth?