RestTemplate uriVariables 怎么使用详解

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

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

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

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

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

 

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

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

 

你可能感兴趣的:(Java,Spring,Boot)