spring-cloud 开发 - RestTemplate 远程调用 HTTP 接口

现在有这样一个场景,我们要实现一个订单服务和一个商品服务,两个服务程序部署在不同的服务器上,当我们获取订单信息时,订单信息中要包含有商品信息,所以订单服务要向商品服务发送请求获取商品信息,这个流程怎么实现呢?

订单服务和商品服务在两个不同的服务器上,所以订单服务要想获取商品信息就得发送 HTTP 请求给商品服务获取,这个 HTTP 请求的发送就得用到 RestTemplate

RestTemplate

RestTemplate 是 Spring Framework 中的一个类,用于发送 HTTP 请求到 RESTful Web 服务。它提供了多种方法来发送请求(GET、POST、PUT、DELETE 等),并将响应转换为 Java 对象。RestTemplate 简化了与 RESTful 服务的交互,使得发送 HTTP 请求和处理响应变得更为简单和直观。

解决流程

1.向 Spring 的 IoC 容器中注入 RestTemplate 对象

java 复制代码
@Configuration
public class BeanConfig {
    @Bean
    public RestTemplate restTemplate(){
        return new RestTemplate();
    }
}

2.注入 RestTemplate 对象并发送 HTTP 请求到对应接口获取数据

java 复制代码
@Service
public class OrderService {
    @Autowired
    private OrderMapper orderMapper;

    @Autowired
    private RestTemplate restTemplate;

    public OrderInfo selectOrderById(Integer orderId){
        OrderInfo orderInfo = orderMapper.selectOrderById(orderId);
        String url = "http://127.0.0.1:9090/product/info/"+orderInfo.getProductId();
        ProductInfo productInfo = restTemplate.getForObject(url, ProductInfo.class);
        orderInfo.setProductInfo(productInfo);
        return orderInfo;
    }
}

上述代码最核心的是:

java 复制代码
String url = "http://127.0.0.1:9090/product/info/"+orderInfo.getProductId();
ProductInfo productInfo = restTemplate.getForObject(url, ProductInfo.class);

url 是商品服务器提供的获取商品信息的接口,restTemplate 对象调用 getForObject 表示向 url 对应的接口发送 HTTP 请求,将获取到的数据转换成 ProductInfo类型的对象并返回

此时我们就完成了在订单服务上发送 HTTP 请求给商品服务,获取商品信息。

相关推荐
Pocker_Spades_A9 小时前
在家搭个私人网盘?用 Nextcloud+cpolar 突破局域网限制
网络
车载测试工程师9 小时前
CAPL学习-IP API函数-1
网络·学习·tcp/ip·capl·canoe·doip
wasp52010 小时前
做了技术管理后,我发现技术和管理其实可以兼得
java·运维·网络
赖small强10 小时前
【Linux 网络基础】HTTPS 技术文档
linux·网络·https·tls
雲烟11 小时前
嵌入式设备EMC安规检测参考
网络·单片机·嵌入式硬件
Yue丶越11 小时前
【C语言】数据在内存中的存储
c语言·开发语言·网络
Altair123112 小时前
nginx的https的搭建
运维·网络·nginx·云计算
李宥小哥12 小时前
Redis10-原理-网络模型
开发语言·网络·php
Umi·12 小时前
iptables的源地址伪装
运维·服务器·网络
在路上看风景12 小时前
6.4 LANS
网络