Im working on a spring boot 2 micro services . now im planning to secure to my rest calls using the OAUTH2 .
I found lot of articles reg that Spring 2 + OAUTH2 integration but does not match with my requirement , all of them use tables and secure calls using the roles ,
My application login works on Single Sign on using the SAML (SSO) , my requirement is to only authorize the each request . what are the best way to do that .
- do i really need table to store the token for the user , since login is already happened using SSO ?
- only thing here is to authorize request irrespective of the roles of the user .
Any suggestions or github link to match the simple requirement will be appreciated .