码迷,mamicode.com
首页 > 其他好文 > 详细

resttemplate 请求方式详解

时间:2019-08-14 14:23:32      阅读:505      评论:0      收藏:0      [点我收藏+]

标签:参数   pos   class   exchange   method   get   change   导出   target   

get 普通请求:

restemplate.getForEntity(url,String.class).getBody();

 

get 导出请求:

restemplate.getForEntity(url, byte[].class);

 

put 请求:参数是实体类

HttpEntity<String> entity = new HttpEntity<String>(JSON.toJSON(targetDto).toString(),headers);
RestTemplate restemplate = RestTemplateHttpsUtil.restTemplate();
restemplate.exchange(url, HttpMethod.PUT,entity, Map.class);

 

post请求:参数是实体类

restemplate.postForEntity(url,targetDto,String.class).getBody();

 

resttemplate 请求方式详解

标签:参数   pos   class   exchange   method   get   change   导出   target   

原文地址:https://www.cnblogs.com/ww25/p/11351539.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!