79687975

Date: 2025-07-02 19:33:27
Score: 0.5
Natty:
Report link

You can create a bean of the JwtDecoder with passed a load balanced RestTemplate:

@Bean
public JwtDecoder jwtDecoder(RestTemplate restTemplate) {
   return NimbusJwtDecoder.withIssuerLocation("http://authorization-server").restOperations(restTemplate).build();
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Artyom