springboot的restTemplate发送参数为json的post请求
程序员文章站
2022-06-24 21:38:18
...
String json="{\"pageSize\":10,\"pageNumber\":1}";
HttpHeaders headers = new HttpHeaders();
headers.setContentType(MediaType.APPLICATION_JSON);
HttpEntity<String> request = new HttpEntity<>(json, headers);
String res = this.restTemplate.postForObject("https://myurl", request ,String.class);
System.out.println(res);
推荐阅读
-
JS获取url参数,JS发送json格式的POST请求方法
-
PostMan post请求发送Json数据的方法
-
java 通过发送json,post请求,返回json数据的方法
-
用POSTMAN发送JSON格式的POST请求示例
-
RestTemplate发送带请求头的Json的Post请求Utils工具类
-
RestTemplate的请求参数传递问题 RestTemplate发送Get请求通过body传参问题
-
浅谈python3发送post请求参数为空的情况
-
linux shell中curl 发送post请求json格式问题的处理方法
-
axios发送post请求springMVC接收不到参数的解决方法
-
GO接收GET/POST参数及发送GET/POST请求的实例详解