RestTemplate URL没有足够的变量值可用于扩展

时间:2015-06-10 20:06:44

标签: spring web-services rest restful-url resttemplate

我需要将2个参数传递给REST URL。像这样:

http://localhost:8080/test/rest/userName/id

我正在尝试这样的事情,这显然是不正确的。请帮忙:

restTemplate.getForObject(localUrl+"{userName}"+"/"+"{id}", Details.class);

修改

我也厌倦了同样的错误:

String param = "{userName}/{id}";
restTemplate.getForObject(localUrl+param, Details.class);

由于

哈里什

0 个答案:

没有答案