我想使用 AsyncRestTemplate 在我的服务中进行 REST 调用。根据 Spring 文档,这个类有 5 个构造函数(参考http://docs.spring.io/spring/docs/current/javadoc-api/org/springframework/web/client/AsyncRestTemplate.html)
AsyncRestTemplate(AsyncClientHttpRequestFactory asyncRequestFactory) - 使用这个 AsyncClientHttpRequestFactory 参数我将能够配置连接池。
AsyncRestTemplate(AsyncListenableTaskExecutor taskExecutor) - 使用它我将能够为异步操作配置线程池。
我想知道是否有一种方法可以在 AsyncRestTemplate 中同时配置连接池和线程池。
非常感谢您。