When configuring OAuth2 Resource Server in Spring Boot, the _____ property is used to specify the location of the public key for verifying JWT signatures.
- public_key_location
- jwt_signing_key
- token_verifier
- security_policy
When configuring an OAuth2 Resource Server in Spring Boot, the public_key_location property is used to specify the location of the public key for verifying JWT signatures. This key is essential for validating the authenticity and integrity of JWT tokens used for authentication and authorization. The other options are not typically used for specifying the public key location.
Loading...
Related Quiz
- Your Spring Boot application requires custom handling of specific exceptions, with different response bodies for each exception type. How would you implement this while ensuring that unhandled exceptions are also adequately addressed?
- What is the primary file used to define properties in Spring Boot?
- In Spring Boot, to create a condition based on the presence or absence of a specific bean, the _____ annotation can be used.
- What is the primary purpose of using TestContainers in Spring Boot?
- In Mockito, to ensure that a mocked method was called with specific arguments, you would use the _____ method.