Notice
Recent Posts
Recent Comments
Link
목록SPRING (1)
DESCRIBE
SPRING - RestTemplate으로 Http통신하기(boring code 줄이기)
RestTemplate를 적용하려는 팀원들에게 도움이 되고자 정리해봅니다. HTTP통신에는 URLConnection과 HttpClient가 있는데, 보통 HttpClient를 사용해왔다. CloseableHttpClient httpClient = HttpClients.createDefault(); HttpGet httpGet = new HttpGet("URI"); CloseableHttpResponse response = httpClient.execute(httpGet); HttpEntity entity = response.getEntity(); String result = EntityUtils.toString(entity); URIconnection과 비교했을 때 HttpClient 방식은 1) 모든 ..
SPRING
2021. 8. 8. 12:13