|
@@ -1,5 +1,6 @@
|
|
|
package com.scbfkj.uni.process;
|
|
|
|
|
|
+import com.scbfkj.uni.library.DataFormatUtil;
|
|
|
import com.scbfkj.uni.library.UniReturnUtil;
|
|
|
import com.scbfkj.uni.system.Config;
|
|
|
import org.springframework.http.HttpEntity;
|
|
@@ -47,6 +48,14 @@ public class Web {
|
|
|
}
|
|
|
|
|
|
public Map<String, Object> execWebApi(Object headers, String method, Object defaultBody, String url) {
|
|
|
+
|
|
|
+ if (Config.isDebug()) {
|
|
|
+ System.out.println("headers: " + DataFormatUtil.toString(headers));
|
|
|
+ System.out.println("method: " + DataFormatUtil.toString(method));
|
|
|
+ System.out.println("body: " + DataFormatUtil.toString(defaultBody));
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
Map<String, Object> restTemplateResult = initWebApiParams(headers, method, url); // 通过连接配置 获取restTemplate
|
|
|
|
|
|
if (!"0".equals(restTemplateResult.get("code"))) {
|
|
@@ -91,6 +100,9 @@ public class Web {
|
|
|
return UniReturnUtil.fail("webapi发送请求失败 : " + responseEntity);
|
|
|
}
|
|
|
} catch (Exception e) {
|
|
|
+ if (Config.isDebug()) {
|
|
|
+ e.printStackTrace();
|
|
|
+ }
|
|
|
return UniReturnUtil.fail("发送请求失败 : ".concat(UniReturnUtil.getMessage(e)));
|
|
|
}
|
|
|
}
|