본문 바로가기
반응형

spring boot 외부 api1

[Spring Boot] RestTmplate로 외부 API 통신하기: GET - header, parameter 아무것도 설정하지 않는 경우 fun getList(){ val url = "http://localhost:3000/~~" //외부 api 주소 val restTemplate = RestTemplate() val response = restTemplate.getForObject( url, String::class ) print(response) } Error: I/O error on GET request for http://localhost:3000~~~~ 라는 에러가 뜬다 해결하기 위해서는 gradle에 HttpComponentsClientHttpRequestFactory라이브러리를 추가해준다 https://mvnrepository.com/artifact/org.apa.. 2022. 10. 26.
반응형