resttemplate 请求方式详解

Posted ww25

tags:

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

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 请求方式详解的主要内容,如果未能解决你的问题,请参考以下文章

Springboot — 用更优雅的方式发HTTP请求(RestTemplate详解)

Springboot -- 用更优雅的方式发HTTP请求(RestTemplate详解)

关于Hystrix超时机制和线程状态的测试观察和个人理解

笔记:Spring Cloud Ribbon RestTemplate 详解

使用 Ribbon 实现客户端侧负载均衡

一起学 Spring 之 RestTemplate