Uses of Interface
org.springframework.web.client.RequestCallback
-
Uses of RequestCallback in org.springframework.web.client
Modifier and TypeMethodDescription<T> RequestCallback
RestTemplate.acceptHeaderRequestCallback
(Class<T> responseType) Return aRequestCallback
that sets the requestAccept
header based on the given response type, cross-checked against the configured message converters.<T> RequestCallback
RestTemplate.httpEntityCallback
(@Nullable Object requestBody) Return aRequestCallback
implementation that writes the given object to the request stream.<T> RequestCallback
RestTemplate.httpEntityCallback
(@Nullable Object requestBody, Type responseType) Return aRequestCallback
implementation that: Sets the requestAccept
header based on the given response type, cross-checked against the configured message converters.Modifier and TypeMethodDescriptionprotected <T> @Nullable T
RestTemplate.doExecute
(URI url, @Nullable String uriTemplate, @Nullable HttpMethod method, @Nullable RequestCallback requestCallback, @Nullable ResponseExtractor<T> responseExtractor) Execute the given method on the provided URI.<T> @Nullable T
RestOperations.execute
(String uriTemplate, HttpMethod method, @Nullable RequestCallback requestCallback, @Nullable ResponseExtractor<T> responseExtractor, @Nullable Object... uriVariables) Execute the HTTP method to the given URI template, preparing the request with theRequestCallback
, and reading the response with aResponseExtractor
.<T> @Nullable T
RestOperations.execute
(String uriTemplate, HttpMethod method, @Nullable RequestCallback requestCallback, @Nullable ResponseExtractor<T> responseExtractor, Map<String, ? extends @Nullable Object> uriVariables) Execute the HTTP method to the given URI template, preparing the request with theRequestCallback
, and reading the response with aResponseExtractor
.<T> @Nullable T
RestOperations.execute
(URI url, HttpMethod method, @Nullable RequestCallback requestCallback, @Nullable ResponseExtractor<T> responseExtractor) Execute the HTTP method to the given URL, preparing the request with theRequestCallback
, and reading the response with aResponseExtractor
.<T> @Nullable T
RestTemplate.execute
(String uriTemplate, HttpMethod method, @Nullable RequestCallback requestCallback, @Nullable ResponseExtractor<T> responseExtractor, @Nullable Object... uriVariables) Execute the HTTP method to the given URI template, preparing the request with theRequestCallback
, and reading the response with aResponseExtractor
.<T> @Nullable T
RestTemplate.execute
(String uriTemplate, HttpMethod method, @Nullable RequestCallback requestCallback, @Nullable ResponseExtractor<T> responseExtractor, Map<String, ? extends @Nullable Object> uriVariables) Execute the HTTP method to the given URI template, preparing the request with theRequestCallback
, and reading the response with aResponseExtractor
.<T> @Nullable T
RestTemplate.execute
(URI url, HttpMethod method, @Nullable RequestCallback requestCallback, @Nullable ResponseExtractor<T> responseExtractor) Execute the HTTP method to the given URL, preparing the request with theRequestCallback
, and reading the response with aResponseExtractor
.