java – 如何使用AsyncRestTemplate拦截AsyncClientHttpRequest?

前端之家收集整理的这篇文章主要介绍了java – 如何使用AsyncRestTemplate拦截AsyncClientHttpRequest?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用 spring AsyncRestTemplate帮助程序类开发异步REST客户端.

客户端需要在每个请求的标头中发送令牌.

使用HttpAsyncClient(http://hc.apache.org/httpcomponents-asyncclient-4.0.x/index.html)作为其余模板的基础http客户端时,可以添加拦截器:

HttpRequestInterceptor interceptor = (request,context) -> request.addHeader("token","value");

CloseableHttpAsyncClient client = HttpAsyncClients.custom()
  .addInterceptorLast(interceptor)
  .build();

HttpComponentsAsyncClientHttpRequestFactory factory = new HttpComponentsAsyncClientHttpRequestFactory(client);

AsyncRestTemplate template = new AsyncRestTemplate(factory);

但是,如果由于某种原因我需要更改底层客户端,则不能再使用此拦截器.

是否有任何其他方法拦截AsyncClientHttpRequest使用基础http客户端的拦截器不可知?

解决方法

不,不是通过AsyncRestTemplate而是通过HttpAsyncClient.这些接口都没有提供用于添加HttpRequestInterceptor实例的mutator.

据我所知,只有这些的建设者是可变的.因此,即使您可以获得请求工厂或客户端,您仍然无法更改它们.

你必须拦截他们的实际创作,这取决于你的设置,可能是不可能的.

猜你在找的Java相关文章