Post 요청 방법 Client 입장 서버요청 받은 검색어를 Query String 방식으로 Server 입장의 서버로 RestTemplate를 사용하여 요청합니다. public ItemDto postCall(String query) { URI uri = UriComponentsBuilder .fromUriString("http://localhost:7070") .path("/api/server/post-call/{query}") // @PathVariable 방식 .encode() .build() .expand(query) // 위 {} 에 들어갈 값을 넣어준다 .toUri(..