For custom authentication logic in Spring Security, developers can create a bean of type _____.

  • AuthenticationProvider
  • AuthorizationManager
  • SecurityContext
  • UserDetailsService
To implement custom authentication logic in Spring Security, developers can create a bean of type AuthenticationProvider. This allows developers to define their own logic for authenticating users, such as checking credentials against a database or external system. The AuthenticationProvider interface is a key component for custom authentication.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *