springboot post请求和接收

Posted _Lawrence

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot post请求和接收相关的知识,希望对你有一定的参考价值。

请求:

RestTemplate restTemplate = new RestTemplate();
LinkedMultiValueMap body=new LinkedMultiValueMap();
body.add("map",dataService.runData());
HttpHeaders headers = new HttpHeaders();
headers.setContentType(MediaType.APPLICATION_JSON_UTF8);
HttpEntity httpEntity = new HttpEntity(body,headers);
restTemplate.exchange("http://localhost:9001/getData",HttpMethod.POST,httpEntity,String.class);

 

接收:

@PostMapping(value = "getData",produces = {"application/json;charset = utf-8"})
public void getData(@RequestBody LinkedMultiValueMap map){
try {
dataService.runData(map.get("map"));
}catch (Exception e){
e.printStackTrace();
}













以上是关于springboot post请求和接收的主要内容,如果未能解决你的问题,请参考以下文章

springboot接收delete或者put方法体参数

SpringBoot集成JWT实现权限认证

SpringBoot Controller接收参数的几种常用注解方式

SpringBoot 接收Get请求个别参数可能为空的解决方案

springboot接收浏览器发送delete请求( method not allowed 405解决方法)

我要给发送请求后台传递参数如图所示,json数组中的对象后台有对应实体类,后台使用springboot如何接收?