resttemplate get请求传参

RESTTemplate是一种在SpringBoot项目中用于发送HTTP请求的工具,它封装了HTTP协议的请求和响应。

如果要在GET请求中传递参数,可以使用以下代码:

String url = "http://localhost:8080/test?name={name}&age={age}";
Map<String, String> params = new HashMap<>();
params.put("name", "Tom");
params.put("age", "20");
String result = restTemplate.getForObject(url, String.class, params);

这里,我们将请求参数放在URL中,并使用占位符表示,然后创建一个Map对象存储参数的值,最后使用 getForObject 方法发送请求并获取响应。

  •