Reputation: 57
we are working on spring boot with spring security and oauth2.Now we need to change our security to use SSO.We have an external server that provide SSO service for us by JWT(An Oracle product).My question is how we can do that with spring security?
Upvotes: 0
Views: 145
Reputation: 2396
You can register a reverse proxy.
You can use Netflix Zuul edge service library which itself will be a separate spring boot application. All requests to your main application will pass through proxy server from where you can call your SSO provider and validate your request.
Read this Link
Upvotes: 1