|
@@ -0,0 +1,41 @@
|
|
|
+package org.jeecg.modules.adweb.common.util;
|
|
|
+
|
|
|
+import lombok.extern.slf4j.Slf4j;
|
|
|
+
|
|
|
+import okhttp3.*;
|
|
|
+
|
|
|
+import org.apache.commons.lang3.StringUtils;
|
|
|
+
|
|
|
+import java.io.IOException;
|
|
|
+import java.util.concurrent.TimeUnit;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 基于{@link OkHttpClient}的API访问工具
|
|
|
+ *
|
|
|
+ * @author wfansh
|
|
|
+ */
|
|
|
+@Slf4j
|
|
|
+public class HttpClientUtils {
|
|
|
+
|
|
|
+ private static final MediaType MEDIA_TYPE_JSON =
|
|
|
+ MediaType.get("application/json; charset=utf-8");
|
|
|
+
|
|
|
+ private static OkHttpClient OK_HTTP_CLIENT =
|
|
|
+ new OkHttpClient.Builder()
|
|
|
+ .connectTimeout(5, TimeUnit.MINUTES)
|
|
|
+ .readTimeout(5, TimeUnit.MINUTES)
|
|
|
+ .writeTimeout(5, TimeUnit.MINUTES)
|
|
|
+ .build();
|
|
|
+
|
|
|
+ private static String postForObject(String url, String json) throws IOException {
|
|
|
+ RequestBody requestBody = RequestBody.create(json, MEDIA_TYPE_JSON);
|
|
|
+ Request request = new Request.Builder().url(url).post(requestBody).build();
|
|
|
+
|
|
|
+ try (Response response = OK_HTTP_CLIENT.newCall(request).execute()) {
|
|
|
+ return response.body().string();
|
|
|
+ } catch (IOException e) {
|
|
|
+ log.error(e.getMessage(), e);
|
|
|
+ return StringUtils.EMPTY;
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|