RestTemplate【Spring 提供的用于访问Rest 服务的模板类】

发布时间 2023-09-18 15:12:52作者: 爱新觉罗LQ

RestTemplate

基本介绍

  1. RestTemplate 是Spring 提供的用于访问Rest 服务的模板类
  2. RestTemplate 提供了多种便捷访问远程Http 服务的方法
  3. 老韩说明:小伙伴可以这样理解, 通过RestTemplate, 我们可以发出http 请求(支持Restful 风格), 去调用Controller 提供的API 接口, 就像我们使用浏览器发出http 请求,调用该API 接口一样.
  4. 使用简单便捷

官网

https://docs.spring.io/spring-framework/docs/5.2.2.RELEASE/javadoc-api/org/springframework/web/client/RestTemplate.html