Interface RestTemplateConfigurer

Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface RestTemplateConfigurer
Configurer for a RestTemplate.
Since:
2.3.0
See Also:
  • RestTemplate
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    configure(org.springframework.web.client.RestTemplate restTemplate)
    User-defined method and contract for applying custom configuration to the given RestTemplate.
  • Method Details

    • configure

      void configure(org.springframework.web.client.RestTemplate restTemplate)
      User-defined method and contract for applying custom configuration to the given RestTemplate.
      Parameters:
      restTemplate - RestTemplate to customize the configuration for.
      See Also:
      • RestTemplate