1. 简介 本教程中,我们将对比 Spring 的两种 Web 客户端实现 -- RestTemplate 和 Spring 5 中全新的 Reactive 替代方案 WebClient. 2. 阻塞式 vs 非阻塞式客户端 Web 应用中,对其他服务进行 HTTP 调用是一个很常见的需求.因此,我们需要一个 Web 客户端工具. 2.1. RestTemplate 阻塞式客户端 很长一段时间以来,Spring 一直提供 RestTemplate 作为 Web 客户端抽象.在底层,RestTem…
原文地址:http://howtodoinjava.com/2015/02/20/spring-restful-client-resttemplate-example/ After learning to build Spring REST based RESTFul APIs for XML representation and JSON representation, let’s build a RESTFul client to consume APIs which we have wri…