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 Controller接收参数的几种常用注解方式
SpringBoot 接收Get请求个别参数可能为空的解决方案