글
Spring RestTemplate 객체 사용시, url에 파라미터 전달 방법
S/Spring
2015. 5. 14. 17:07
참조 : http://stackoverflow.com/questions/15774475/how-to-send-a-getforobject-request-with-parameters-spring-mvc
RestTemplate 객체를 사용하여 url 주소를 호출과 동시에 파라미터를 전달 해줄 경우 Uri 객체에 파라미터를 넣어 코드를 작성하여야한다.
Uri targetUrl= UriComponentsBuilder.fromUriString(BASE_URL)
.path("/android/played.json")
.queryParam("name", nome)
.build()
.toUri();
return restTemplate.getForObject(targetUrl, Name.class);
'S > Spring' 카테고리의 다른 글
ContentNegotiatingViewResolver 와 ResponseBody 차이 (0) | 2014.07.15 |
---|---|
Spring - @ResponseBody 응답 시 한글 인코딩(깨짐) 문제 (0) | 2014.07.15 |
Validate 종류들 (0) | 2014.06.21 |
Request processing failed; nested exception is org.apache.tiles.definition.DefinitionsFactoryException: I/O Error reading definitions.] with root cause (0) | 2014.06.14 |
Binding a List Request Parameter on Spring MVC (0) | 2014.06.03 |