InterviewSolution
Saved Bookmarks
| 1. |
Explain what is ProviderManager in Spring security. |
|
Answer» The default implementation of AuthenticationManager is PROVIDERMANAGER. It does not HANDLE the AUTHENTICATION request itself, rather delegates the authentication process to a list of configured AuthenticationProviders. Each authenticationprovider in turn is queried to SEE if it can handle the authentication request. |
|