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 SummaryFields inherited from class org.springframework.http.client.support.HttpAccessorlogger
- 
Constructor SummaryConstructors
- 
Method SummaryModifier 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 org.springframework.http.client.support.HttpAccessorcreateRequest, getClientHttpRequestInitializers, setClientHttpRequestInitializers
- 
Constructor Details- 
InterceptingHttpAccessorpublic InterceptingHttpAccessor()
 
- 
- 
Method Details- 
setInterceptorsSet 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.
- 
getInterceptorsGet 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.
- 
setRequestFactorySet 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. 
- 
getRequestFactoryOverridden to expose anInterceptingClientHttpRequestFactoryif necessary.- Overrides:
- getRequestFactoryin class- HttpAccessor
- See Also:
 
 
-