SpringCloud00 _Restemplate的getForEntity、getForObject、 postForEntity、postForObject

本文主要是介绍SpringCloud00 _Restemplate的getForEntity、getForObject、 postForEntity、postForObject,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

文章目录

  • ①. getForEntity
  • ②. getForObject
  • ③. postForEntity
  • ④. postForObject

①. getForEntity

  • ①. getForEntity方法的返回值是一个ResponseEntity,ResponseEntity是Spring对HTTP请求响应的封装,包括了几个重要的元素,如响应码、contentType、contentLength、响应消息体等。比如下面一个例子:
@RequestMapping("/gethello")
public String getHello() {ResponseEntity<String> responseEntity = restTemplate.getForEntity("http://HELLO-SERVICE/hello", String.class);String body = responseEntity.getBody();//获取到相应体HttpStatus statusCode = responseEntity.getStatusCode();//获取到状态码int statusCodeValue = responseEntity.getStatusCodeValue();HttpHeaders headers = responseEntity.getHeaders();//获取到头信息StringBuffer result = new StringBuffer();result.append("responseEntity.getBody():").append(body).append("<hr>").append("responseEntity.getStatusCode():").append(statusCode).append("<hr>").append("responseEntity.getStatusCodeValue():").append(statusCodeValue).append("<hr>").append("responseEntity.getHeaders():").append(headers).append("<hr>");return result.toString();
}

在这里插入图片描述

  • ②. 关于这段代码,我说如下几点:
  1. getForEntity的第一个参数为我要调用的服务的地址,这里我调用了服务提供者提供的/hello接口,注意这里是通过服务名调用而不是服务地址,如果写成服务地址就没法实现客户端负载均衡了
  2. getForEntity第二个参数String.class表示我希望返回的body类型是String
  • ③. 最终显示结果如下:

在这里插入图片描述

  • ④. 有时候我在调用服务提供者提供的接口时,可能需要传递参数,有两种不同的方式,如下
  1. 可以用一个数字做占位符,最后是一个可变长度的参数,来一一替换前面的占位符
  2. 也可以前面使用name={name}这种形式,最后一个参数是一个map,map的key即为前边占位符的名字,map的value为参数值
@RequestMapping("/sayhello")
public String sayHello() {ResponseEntity<String> responseEntity = restTemplate.getForEntity("http://HELLO-SERVICE/sayhello?name={1}", String.class, "张三");return responseEntity.getBody();
}
@RequestMapping("/sayhello2")
public String sayHello2() {Map<String, String> map = new HashMap<>();map.put("name", "李四");ResponseEntity<String> responseEntity = restTemplate.getForEntity("http://HELLO-SERVICE/sayhello?name={name}", String.class, map);return responseEntity.getBody();
}
  • ⑤. 第一个调用地址也可以是一个URI而不是字符串,这个时候我们构建一个URI即可,参数神马的都包含在URI中了,如下:
@RequestMapping("/sayhello3")
public String sayHello3() {UriComponents uriComponents = UriComponentsBuilder.fromUriString("http://HELLO-SERVICE/sayhello?name={name}").build().expand("王五").encode();URI uri = uriComponents.toUri();ResponseEntity<String> responseEntity = restTemplate.getForEntity(uri, String.class);return responseEntity.getBody();
}

②. getForObject

  • ①. getForObject函数实际上是对getForEntity函数的进一步封装,如果你只关注返回的消息体的内容,对其他信息都不关注,此时可以使用getForObject,举一个简单的例子,如下:
	@RequestMapping("/book2")public Book book2() {Book book = restTemplate.getForObject("http://HELLO-SERVICE/getbook1", Book.class);return book;}

在这里插入图片描述在这里插入图片描述

  • ②. 这几个重载方法参数的含义和getForEntity一致,我就不再赘述了

③. postForEntity

  • ①. 该方法和get请求中的getForEntity方法类似,如下例子:
  1. 方法的第一参数表示要调用的服务的地址
  2. 方法的第二个参数表示上传的参数
  3. 方法的第三个参数表示返回的消息体的数据类型
	@RequestMapping("/book3")public Book book3() {Book book = new Book();book.setName("红楼梦");ResponseEntity<Book> responseEntity = restTemplate.postForEntity("http://HELLO-SERVICE/getbook2", book, Book.class);return responseEntity.getBody();}
  • ②. 这里创建了一个Book对象,这个Book对象只有name属性有值,将之传递到服务提供者那里去,服务提供者代码如下:
	@RequestMapping(value = "/getbook2", method = RequestMethod.POST)public Book book2(@RequestBody Book book) {System.out.println(book.getName());book.setPrice(33);book.setAuthor("曹雪芹");book.setPublisher("人民文学出版社");return book;}
  • ③. 服务提供者接收到服务消费者传来的参数book,给其他属性设置上值再返回,调用结果如下:

在这里插入图片描述

④. postForObject

  • ①. 如果你只关注,返回的消息体,可以直接使用postForObject。用法和getForObject一致
    在这里插入图片描述

这篇关于SpringCloud00 _Restemplate的getForEntity、getForObject、 postForEntity、postForObject的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/953127

相关文章

restemplate发送安全认证的http请求

业务中,会访问到需要安全认证的服务。如 发送请求时,需要把resttemplate设置头信息,具体实现如下         String url = "http://localhost:8080/testController";         HttpHeaders header = new HttpHeaders();         //输入自己的用户名和密码         Str

restemplate请求乱码之content-encoding=“gzip“

restemplate请求乱码之content-encoding="gzip" 响应头中的gzipContent-EncodingAccept-Encoding SpringBoot的响应体压缩配置最后 今天有一个通过Restemplate请求一个天气API,发现其Body数据是乱码,同事处理了好久,然并卵,经检查后,发现头部信息出了问题。 content-encoding="g

restTemplate.getForObject方法第三方接口请求URL转义异常java.lang.IllegalArgumentException:Invalid character

今天自己写的一个小demo,使用RSA非对称算法加解密数据进行第三方接口测试。然后过程中出现了各种各样的bug,特别是下面这个错误,花了楼主大半天的时间去解决。。。 主要是使用 restTemplate.getForObject 方法去请求第三方接口请求参数的时候,带有+=这种类似的字符他会进行转义,然后解密失败。 下面是出错之前的代码: ResponseResult object = res

restTemplate.postForObject传递requestParam

标题有点恶心,描述不太清楚遇到的问题,现在来具体解释一下:首先定义项目A和项目B,A项目有个消息推送的接口,B有个主推也就是调A的接口的方法,前期A约定使用post,需要的参数也是somany。。。故B将请求的参数封装为一个requestBody进行参数传递,联调过程中,发现A接口的参数使用requestparam进行传递 解决思路: 将requestBody使用beanUtils.descr

restemplate设置connection timeout

参考:http://stackoverflow.com/questions/11537591/resttemplate-default-timeout-value @Override@SuppressWarnings("unchecked")protected Void doInBackground(Void... params) {// TODO Auto-generated method

RestTemplate.postForEntity 方法进行 HTTP POST 请求

RestTemplate 是 Spring Framework 提供的一个用于处理 HTTP 请求的客户端工具。其中,postForEntity 是 RestTemplate 提供的用于发送 HTTP POST 请求并返回 ResponseEntity 对象的方法。 public <T> ResponseEntity<T> postForEntity(String url, Object req