RestTemplate 发送post请求并支持自定义header
之前post请求一直用httpclient ,写起来比较麻烦,所以最好是写一个utils 然后到处调用,自从用RestTemplate进行get和post请求之后,发现方便许多,能够满足大部分需求。
不说了,直接上代码:
HttpHeaders headers = new HttpHeaders();
headers.setContentType(MediaType.APPLICATION_JSON_UTF8);
headers.add("version","1.0.0");
HttpEntity<String> requestParam = new HttpEntity<>(JsonMapper.INSTANCE.toJson(data), headers);
String res = restTemplate.postForEntity(url,requestParam,String.class).getBody();
data为你要发送的数据,我这里是一个POJO,然后转成了json发送。
MediaType.APPLICATION_JSON_UTF8 等效于 httpPost.addHeader("Content-Type", "application/json;charset=utf-8");
url为要发送到的地址
res 为返回值