CloseableHttpClient默认超时时间
时间: 2023-12-19 13:30:22 浏览: 150
客户端设置超时时间真的很重要
根据提供的引用内容[1],无法确定CloseableHttpClient的默认超时时间。因为在创建CloseableHttpClient时,并没有设置超时时间。如果需要设置超时时间,需要使用RequestConfig类来设置。例如:
```java
RequestConfig config = RequestConfig.custom()
.setConnectTimeout(5000) // 设置连接超时时间为5秒
.setSocketTimeout(5000) // 设置读取超时时间为5秒
.build();
CloseableHttpClient httpclient = HttpClients.custom()
.setDefaultRequestConfig(config)
.build();
```
以上代码中,连接超时时间和读取超时时间都被设置为5秒。
阅读全文