其他分享
首页 > 其他分享> > RestTemplate uriVariables 怎么使用详解

RestTemplate uriVariables 怎么使用详解

作者:互联网

参数是url路径上,如:http://www.xxx.com/users/{id}/kids/{name}。此时使用restTemplate.getForObject可以写成

String url = "http://www.xxx.com/users/{id}/kids/{name}";
Map<String, Object> resultMap = restTemplate.getForObject(url, Map.class,"123456","xiao ming");

调用的是<T> T getForObject(String url, Class<T> responseType, Object... uriVariables)方法。 
接收http请求的地方写成:

@GetMapping(value = "/testAccept/{id}/kid/{name}")
public Map<String, Object> testAccept(@PathVariable String id,@PathVariable String name){
    Map<String, Object> ret = Maps.newHashMap();
    ret.put("id", id);
    ret.put("name", name);
    return ret;
}

@PathVariable注解表示2个参数都是url路径上的参数。 
.

 

这篇文章写得很详细,大家可以多参考。

参考博文: https://blog.csdn.net/u012843361/article/details/79893638

 

标签:uriVariables,name,Map,url,RestTemplate,ret,详解,id,String
来源: https://blog.csdn.net/qq_26878363/article/details/96161133