|
|
|
@ -1,6 +1,7 @@
|
|
|
|
|
package com.glxp.mipsdl.admin.util;
|
|
|
|
|
|
|
|
|
|
import com.alibaba.fastjson.JSONObject;
|
|
|
|
|
import com.alibaba.fastjson.serializer.SerializerFeature;
|
|
|
|
|
import com.glxp.mipsdl.admin.http.OkHttpCli;
|
|
|
|
|
import org.slf4j.Logger;
|
|
|
|
|
import org.slf4j.LoggerFactory;
|
|
|
|
@ -67,7 +68,8 @@ public class HttpClient {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String postJson(String url, Object object, String... headers) {
|
|
|
|
|
String json = JSONObject.toJSON(object).toString();
|
|
|
|
|
//转json字符串时,将空属性转换为空字符串
|
|
|
|
|
String json = JSONObject.toJSONString(object, SerializerFeature.WriteNullStringAsEmpty);
|
|
|
|
|
logger.info(url + "\n" + json);
|
|
|
|
|
|
|
|
|
|
String response = "";
|
|
|
|
|