Class InterceptingHttpAccessor
- Direct Known Subclasses:
RestTemplate
RestTemplate
and other HTTP accessing gateway helpers, adding interceptor-related
properties to HttpAccessor's common properties.
Not intended to be used directly.
See RestTemplate for an entry point.
- Since:
- 3.0
- Author:
- Arjen Poutsma, Juergen Hoeller
- See Also:
-
Field Summary
Fields inherited from class HttpAccessor
logger -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionGet the request interceptors that this accessor uses.Overridden to expose anInterceptingClientHttpRequestFactoryif necessary.voidsetInterceptors(List<ClientHttpRequestInterceptor> interceptors) Set the request interceptors that this accessor should use.voidsetRequestFactory(ClientHttpRequestFactory requestFactory) Set the request factory that this accessor uses for obtaining client request handles.Methods inherited from class HttpAccessor
createRequest, getBufferingPredicate, getClientHttpRequestInitializers, setBufferingPredicate, setClientHttpRequestInitializers
-
Constructor Details
-
InterceptingHttpAccessor
public InterceptingHttpAccessor()
-
-
Method Details
-
setInterceptors
Set the request interceptors that this accessor should use.The interceptors will get immediately sorted according to their order.
Note: This method does not support concurrent changes, and in most cases should not be called after initialization on startup. See also related note on
RestTemplateregarding concurrent configuration changes.- See Also:
-
getInterceptors
Get the request interceptors that this accessor uses.The returned
Listis active and may be modified. Note, however, that the interceptors will not be resorted according to their order before theClientHttpRequestFactoryis built. -
setRequestFactory
Description copied from class:HttpAccessorSet the request factory that this accessor uses for obtaining client request handles.The default is a
SimpleClientHttpRequestFactorybased on the JDK's own HTTP libraries (HttpURLConnection).Note that the standard JDK HTTP library does not support the HTTP PATCH method. Configure the Apache HttpComponents or OkHttp request factory to enable PATCH.
- Overrides:
setRequestFactoryin classHttpAccessor- See Also:
-
getRequestFactory
Overridden to expose anInterceptingClientHttpRequestFactoryif necessary.- Overrides:
getRequestFactoryin classHttpAccessor- See Also:
-