|
@@ -2,10 +2,9 @@ package org.bfkj.protocol;
|
|
|
|
|
|
import org.bfkj.utils.LogUtils;
|
|
|
import org.bfkj.utils.MapTools;
|
|
|
-import org.springframework.http.HttpEntity;
|
|
|
-import org.springframework.http.HttpHeaders;
|
|
|
-import org.springframework.http.MediaType;
|
|
|
+import org.springframework.http.*;
|
|
|
import org.springframework.http.converter.StringHttpMessageConverter;
|
|
|
+import org.springframework.util.MultiValueMap;
|
|
|
import org.springframework.web.client.RestTemplate;
|
|
|
|
|
|
import java.nio.charset.StandardCharsets;
|
|
@@ -25,6 +24,7 @@ public class WebAPI {
|
|
|
* webapi 执行入口函数
|
|
|
*/
|
|
|
public Map<String, Object> execWebApi(Object header, String method, Object defaultBody, String connectConfig) {
|
|
|
+
|
|
|
Map<String, Object> connectConfigMaps = (Map<String, Object>) MapTools.strToObj(connectConfig);
|
|
|
Map<String, Object> restTemplateResult = initWebApiParams(connectConfigMaps); // 通过连接配置 获取restTemplate
|
|
|
|
|
@@ -41,7 +41,9 @@ public class WebAPI {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
- if (MapTools.isNotBlank(method)) webapiMethod = method.toLowerCase();
|
|
|
+ if (MapTools.isNotBlank(method)) {
|
|
|
+ webapiMethod = method.toLowerCase();
|
|
|
+ }
|
|
|
try {
|
|
|
List<Map<String, Object>> returnList = new ArrayList<>();
|
|
|
if (defaultBody instanceof List<?> tempList) {
|
|
@@ -62,7 +64,12 @@ public class WebAPI {
|
|
|
HttpEntity<Object> request = new HttpEntity<>(defaultBody, webApiHeader);
|
|
|
String responseEntity = null;
|
|
|
switch (webapiMethod) {
|
|
|
- case "get" -> responseEntity = restTemplate.getForObject(webapiURL, String.class, request);
|
|
|
+ case "get" -> {
|
|
|
+ HttpEntity<MultiValueMap<String, String>> entity = new HttpEntity<>(webApiHeader);
|
|
|
+ ResponseEntity<String> response =
|
|
|
+ restTemplate.exchange(webapiURL, HttpMethod.GET, entity, String.class);
|
|
|
+ responseEntity = response.getBody();
|
|
|
+ }
|
|
|
case "put" -> restTemplate.put(webapiURL, request);
|
|
|
case "delete" -> restTemplate.delete(webapiURL, request);
|
|
|
default -> responseEntity = restTemplate.postForObject(webapiURL, request, String.class);
|