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.
Loading...
Related Quiz
- For custom validation logic in Spring Boot, the _____ method of the ConstraintValidator interface needs to be implemented.
- Can Bean Validation be applied to method parameters in Spring Boot, and if so, how?
- How can you configure profiles in Spring Boot to optimize configuration loading during testing?
- In OAuth2, the _____ grant type is used by clients to exchange user credentials for an access token.
- In a distributed environment, using Spring Boot, cache synchronization can be achieved efficiently through _____.