Uses of Interface
org.springframework.boot.restclient.RestTemplateCustomizer
Packages that use RestTemplateCustomizer
Package
Description
Web client utilities.
Observation integration for RestClient and RestTemplate.
RestClient and RestTemplate test utilities.
-
Uses of RestTemplateCustomizer in org.springframework.boot.restclient
Methods in org.springframework.boot.restclient 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.restclient 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.restclient with parameters of type RestTemplateCustomizerModifierConstructorDescriptionRestTemplateBuilder
(RestTemplateCustomizer... customizers) Create a newRestTemplateBuilder
instance. -
Uses of RestTemplateCustomizer in org.springframework.boot.restclient.observation
Classes in org.springframework.boot.restclient.observation that implement RestTemplateCustomizerModifier and TypeClassDescriptionclass
RestTemplateCustomizer
that configures theRestTemplate
to record request observations. -
Uses of RestTemplateCustomizer in org.springframework.boot.restclient.test
Classes in org.springframework.boot.restclient.test that implement RestTemplateCustomizerModifier and TypeClassDescriptionclass
RestTemplateCustomizer
that can be applied to aRestTemplateBuilder
instances to addMockRestServiceServer
support.