검색해보니 제일 간단한게 RestTemplate 인것 같아서 공유
@GetMapping(value = "/test2")
public void geturl() {
HttpHeaders header = new HttpHeaders();
header.set("token", "토큰키");
header.set("id_pcode", "10");
ResponseEntity<String> response = new RestTemplate().exchange("요청할 URL", HttpMethod.GET, new HttpEntity(header), String.class);
System.out.println("response == " + response);
}
** RestTemplate 메서드 참고 (http://spring.io/blog/2009/03/27/rest-in-spring-3-resttemplate) URL
반응형
':::: 개발 :::: > └ JSP & SPRING' 카테고리의 다른 글
hibernate.hbm2ddl.auto 옵션 설정으로 DB 날려먹지 말자... (0) | 2018.10.30 |
---|---|
MAP >> JSON >> JSONArray 변환 참조 (0) | 2018.10.12 |
spring boot JPA 실제 쿼리 로그 찍어보기 (0) | 2018.10.10 |
mustache 탬플릿 session 사용 (0) | 2018.10.08 |
Spring Boot 시작 main 메서드가 2개 이상 있을때 시작 클래스 지정 (0) | 2018.08.23 |
스프링 부트에서 JSTL 사용할때(표준 JSP ) application.properties (0) | 2018.05.25 |
spring boot html/js 동적 로딩( 재시작없이 적용) (0) | 2018.05.15 |
logback sql 로그 볼때 PreparedStatement 가 출력 방법 (0) | 2018.05.14 |