인지용

spring RestTemplate 본문

정보들

spring RestTemplate

인지용 2021. 8. 24. 18:30

Spring 3.0 부터 지원, 스프링이 제공하는 HTTP 통신에 유용하게 사용할 수 있는 템플릿이며,

HTTP 서버와의 통신을 단순화하고 RESTful 원칙을 지키고 있다.

 

즉 스프링에서 http 통신 할수있게 해 준다.

 

import

 

import org.springframework.web.client.RestTemplate;

 

 

변수 선언

RestTemplate rt = new RestTemplate();

'정보들' 카테고리의 다른 글

java MultiValueMap 이란  (0) 2021.08.24
Content-type을 담는 이유  (0) 2021.08.24
@bean, @configuration, @component 차이  (0) 2021.08.20
java config 설정 의미 (WebConfig)  (0) 2021.08.20
@EnableWebMvc 사용이유  (0) 2021.08.19