yidao620c / comments

用来存储用户评论
MIT License
1 stars 0 forks source link

SpringBoot系列 - 使用RestTemplate | 飞污熊博客 #647

Open yidao620c opened 1 year ago

yidao620c commented 1 year ago

https://www.xncoding.com/java/springboot/sb-restclient.html

spring框架提供的RestTemplate类可用于在应用中调用rest服务,它简化了与http服务的通信方式,统一了RESTful的标准,封装了http链接, 我们只需要传入url及返回值类型即可。相较于之前常用的HttpClient,RestTemplate是一种更优雅的调用RESTful服务的方式。 RestTemplate默认依赖JDK提供http连接的能力(HttpURLConnect