### RestTemplate 사용하기 `RestTemplate`은 Spring에서 오래전부터 제공해 온 HTTP 요청 기능을 갖춘 클래스입니다. 동기적인 메소드 호출을 제공하며, 다양한 HTTP 메소드(GET, POST, PUT, DELETE 등)를 실행할 수 있습니다. #### RestTemplate 예제 ```javaimport org.springframework.web.client.RestTemplate;import org.springframework.http.ResponseEntity; public class RestTemplateExample { private static final String API_URL = "https://api.example.com/data"; private..