반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- NextJS
- docker
- rocky9
- jquery
- Java
- SpringBoot
- mysql
- spring3
- submit
- Maven
- node.js
- MariaDB
- spring
- security
- post
- popup
- config
- PM2
- nodejs
- ajax
- Next.js
- mybatis
- git
- yona
- console
- Eclipse
- MSsql
- javascript
- jenkins
- centos7
Archives
- Today
- Total
ふたりで
spring(springboot) simple POST request (API call) 본문
728x90
반응형
SMALL
백엔드에서 여러내부 서버 측으로 API를 콜 할 경우 간단 하게 요청 하는 방법이 있어 정리 한다.
import org.springframework.http.HttpEntity;
import org.springframework.http.HttpHeaders;
import org.springframework.http.HttpMethod;
import org.springframework.http.ResponseEntity;
import org.springframework.util.LinkedMultiValueMap;
import org.springframework.util.MultiValueMap;
import org.springframework.web.client.RestTemplate;
public class requestUtil {
public static String restRequest(String requestUrl, String id){
String result="";
//보낼 파라메터 셋팅
MultiValueMap<String, String> params = new LinkedMultiValueMap<>();
params.add("id", id);
//헤더셋팅
HttpHeaders headers = new HttpHeaders();
headers.add("accept", "text/plain;charset=UTF-8");
//파라메터와 헤어 합치기
HttpEntity<MultiValueMap<String, String>> entity = new HttpEntity<>(params, headers);
//RestTemplate 초기화
RestTemplate rt = new RestTemplate();
//전송 및 결과 처리
ResponseEntity<String> response = rt.exchange(
requestUrl,
HttpMethod.POST,
entity,
String.class
);
result = response.getBody();//리턴되는 결과의 body를 저장.
return result;
}
}
728x90
반응형
LIST
'Spring' 카테고리의 다른 글
spring tags + application.properties 값 참조 하기 (0) | 2022.04.28 |
---|---|
springboot+swagger+config (0) | 2022.04.18 |
springboot + security tags를 사용한 menu권한 처리 및 수동 인증(강제로그인). (0) | 2021.12.28 |
springboot+sitemesh 설정. (0) | 2021.12.20 |
JWT 토큰 유효기간 설정. (0) | 2021.10.29 |
Comments