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 TypeClassDescriptionclass
RestTemplateCustomizer
that configures theRestTemplate
to 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 TypeClassDescriptionclass
RestTemplateCustomizer
that can be applied to aRestTemplateBuilder
instances to addMockRestServiceServer
support. -
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) AddRestTemplateCustomizers
that should be applied to theRestTemplate
.RestTemplateBuilder.customizers
(RestTemplateCustomizer... customizers) Set theRestTemplateCustomizers
that 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) AddRestTemplateCustomizers
that should be applied to theRestTemplate
.RestTemplateBuilder.customizers
(Collection<? extends RestTemplateCustomizer> customizers) Set theRestTemplateCustomizers
that should be applied to theRestTemplate
.Constructors in org.springframework.boot.web.client with parameters of type RestTemplateCustomizerModifierConstructorDescriptionRestTemplateBuilder
(RestTemplateCustomizer... customizers) Create a newRestTemplateBuilder
instance.