talentluke
talentluke
请问什么时候升级Httpclient,或者换成其他库,现在Httpclient4.x已经改成Httpclient5.x了
com.github.binarywang.wxpay.service.impl.WxPayServiceApacheHttpImpl这个类里面存在大量 try (CloseableHttpClient httpClient = this.createApiV3HttpClient();当出现异常时,httpClient的close方法会关闭连接池,导致下次请求报错,异常情况,不应该关闭连接池吧 例如,postV3WithWechatpaySerial方法 public String postV3WithWechatpaySerial(String url, String requestStr) throws WxPayException { HttpPost httpPost = this.createHttpPost(url, requestStr); this.configureRequest(httpPost); try (CloseableHttpClient httpClient = this.createApiV3HttpClient(); CloseableHttpResponse response =...