To configure a JWT token store in a Spring Boot application, you need to define a _____ bean in the configuration class.

  • TokenStore
  • JwtTokenStore
  • SecurityConfigurer
  • AuthenticationManager
To configure a JWT token store in a Spring Boot application, you need to define a JwtTokenStore bean in the configuration class. This store is responsible for managing and storing JWT tokens, which are commonly used for authentication and authorization in web applications. The other options are not related to configuring a JWT token store.
Add your answer
Loading...

Leave a comment

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