|
@@ -3,8 +3,10 @@ package org.jeecg.modules.adweb.common.util;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
|
|
|
import org.apache.commons.codec.binary.Base64;
|
|
|
-import org.springframework.http.HttpHeaders;
|
|
|
+import org.springframework.core.ParameterizedTypeReference;
|
|
|
+import org.springframework.http.*;
|
|
|
import org.springframework.http.client.SimpleClientHttpRequestFactory;
|
|
|
+import org.springframework.web.client.RestClientException;
|
|
|
import org.springframework.web.client.RestTemplate;
|
|
|
|
|
|
import java.nio.charset.StandardCharsets;
|
|
@@ -13,6 +15,8 @@ import java.util.Map;
|
|
|
/**
|
|
|
* {@link RestTemplate}初始化及工厂类
|
|
|
*
|
|
|
+ * <p>普通文本类型HTTP请求,请使用{@link org.jeecg.common.util.RestUtil}
|
|
|
+ *
|
|
|
* @author wfansh
|
|
|
*/
|
|
|
@Slf4j
|
|
@@ -43,7 +47,26 @@ public class RestTemplateUtil {
|
|
|
Map.of(HttpHeaders.AUTHORIZATION, "Basic " + new String(encodedAuth)));
|
|
|
}
|
|
|
|
|
|
- public static RestTemplate getRestTemplate(
|
|
|
+ /** HTTP POST请求读取对象 */
|
|
|
+ public static <T> T postForObject(
|
|
|
+ RestTemplate restTemplate,
|
|
|
+ String url,
|
|
|
+ Object request,
|
|
|
+ ParameterizedTypeReference<T> responseType)
|
|
|
+ throws RestClientException {
|
|
|
+ RequestEntity<?> requestEntity = RequestEntity.post(url).body(request);
|
|
|
+ return restTemplate.exchange(requestEntity, responseType).getBody();
|
|
|
+ }
|
|
|
+
|
|
|
+ /** HTTP GET请求读取对象 */
|
|
|
+ public static <T> T getForObject(
|
|
|
+ RestTemplate restTemplate, String url, ParameterizedTypeReference<T> responseType)
|
|
|
+ throws RestClientException {
|
|
|
+ RequestEntity<?> requestEntity = RequestEntity.get(url).build();
|
|
|
+ return restTemplate.exchange(requestEntity, responseType).getBody();
|
|
|
+ }
|
|
|
+
|
|
|
+ private static RestTemplate getRestTemplate(
|
|
|
int connectTimeoutSeconds, int readTimeoutSeconds, Map<String, String> httpHeaders) {
|
|
|
// 1. 请求超时
|
|
|
SimpleClientHttpRequestFactory requestFactory = new SimpleClientHttpRequestFactory();
|
|
@@ -57,7 +80,8 @@ public class RestTemplateUtil {
|
|
|
.getInterceptors()
|
|
|
.add(
|
|
|
((request, body, execution) -> {
|
|
|
- httpHeaders.entrySet().stream()
|
|
|
+ httpHeaders
|
|
|
+ .entrySet()
|
|
|
.forEach(
|
|
|
entry ->
|
|
|
request.getHeaders()
|