浏览代码

格式化代码

master
ecoolper 8 年前
父节点
当前提交
0e6113b765
共有 1 个文件被更改,包括 2 次插入3 次删除
  1. +2
    -3
      weixin-java-pay/src/main/java/com/github/binarywang/wxpay/service/impl/WxPayServiceImpl.java

+ 2
- 3
weixin-java-pay/src/main/java/com/github/binarywang/wxpay/service/impl/WxPayServiceImpl.java 查看文件

@@ -375,7 +375,6 @@ public class WxPayServiceImpl implements WxPayService {
} }


/** /**
* 由于暂时未找到使用jodd-http实现证书配置的办法,故而暂时使用httpclient
* ecoolper(20170418),修改为jodd-http方式 * ecoolper(20170418),修改为jodd-http方式
*/ */
private String postWithKey(String url, String requestStr) throws WxErrorException { private String postWithKey(String url, String requestStr) throws WxErrorException {
@@ -385,9 +384,9 @@ public class WxPayServiceImpl implements WxPayService {
sslContext = this.getConfig().initSSLContext(); sslContext = this.getConfig().initSSLContext();
} }


HttpRequest request =HttpRequest.post(url).withConnectionProvider(new SSLSocketHttpConnectionProvider(sslContext));
HttpRequest request = HttpRequest.post(url).withConnectionProvider(new SSLSocketHttpConnectionProvider(sslContext));
request.bodyText(requestStr); request.bodyText(requestStr);
HttpResponse response =request.send();
HttpResponse response = request.send();
String result = response.bodyText(); String result = response.bodyText();
this.log.debug("\n[URL]: {}\n[PARAMS]: {}\n[RESPONSE]: {}", url, requestStr, result); this.log.debug("\n[URL]: {}\n[PARAMS]: {}\n[RESPONSE]: {}", url, requestStr, result);
return result; return result;


正在加载...
取消
保存