Uses of Interface
org.springframework.boot.web.client.RestTemplateCustomizer
Packages that use RestTemplateCustomizer
Package
Description
Actuator support for web client metrics.
Web client test utilities.
Web client utilities.
-
Uses of RestTemplateCustomizer in org.springframework.boot.actuate.metrics.web.client
Classes in org.springframework.boot.actuate.metrics.web.client that implement RestTemplateCustomizerModifier and TypeClassDescriptionclassRestTemplateCustomizerthat configures theRestTemplateto record request observations. -
Uses of RestTemplateCustomizer in org.springframework.boot.test.web.client
Classes in org.springframework.boot.test.web.client that implement RestTemplateCustomizerModifier and TypeClassDescriptionclassRestTemplateCustomizerthat can be applied to aRestTemplateBuilderinstances to addMockRestServiceServersupport. -
Uses of RestTemplateCustomizer in org.springframework.boot.web.client
Methods in org.springframework.boot.web.client with parameters of type RestTemplateCustomizerModifier and TypeMethodDescriptionRestTemplateBuilder.additionalCustomizers(RestTemplateCustomizer... customizers) AddRestTemplateCustomizersthat should be applied to theRestTemplate.RestTemplateBuilder.customizers(RestTemplateCustomizer... customizers) Set theRestTemplateCustomizersthat should be applied to theRestTemplate.Method parameters in org.springframework.boot.web.client with type arguments of type RestTemplateCustomizerModifier and TypeMethodDescriptionRestTemplateBuilder.additionalCustomizers(Collection<? extends RestTemplateCustomizer> customizers) AddRestTemplateCustomizersthat should be applied to theRestTemplate.RestTemplateBuilder.customizers(Collection<? extends RestTemplateCustomizer> customizers) Set theRestTemplateCustomizersthat should be applied to theRestTemplate.Constructors in org.springframework.boot.web.client with parameters of type RestTemplateCustomizerModifierConstructorDescriptionRestTemplateBuilder(RestTemplateCustomizer... customizers) Create a newRestTemplateBuilderinstance.