Ribbon 是可以单独使用的,但是在 Spring Cloud 中使用 Ribbon 会更简单。因为 Spring Cloud 在 Ribbon 基础上进行了一层封装,将很多配置都集成好了。本文将在 Spring Cloud 中使用 Ribbon。

一、RestTemplate是什么?

RestTemplate是Spring提供的用于访问Rest服务的客户端,RestTemplate提供了多种便捷访问远程Http服务的方法,能够大大提高客户端的编写效率。

二、RestTemplate+Ribbon

1.创建项目


RestTemplate 优雅的下载文件 resttemplate在哪个包_ribbon

三个项目创建的时候都选上Eureka-client和SpringWeb依赖。注意创建项目要对应上SpringBoot和SpringCloud版本号 。

我们先来写被访问的集群中的两个模块的配置文件。要注意服务器端口号要分清楚以及eureka注册的地址。

RestTemplate 优雅的下载文件 resttemplate在哪个包_ribbon_02

RestTemplate 优雅的下载文件 resttemplate在哪个包_ribbon_03

一致的。

写完之后我们在两个模块里分别写一个接口,方便我们一会简单测试一下。

集群中第一个模块:

package com.example.provider01.controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class ProviderController {

    @GetMapping("hello")
    public String hello(){
        return "我是提供者aaa的接口";
    }
}

集群中第二个模块 :

package com.example.provider02.controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class ProviderController {

    @GetMapping("/hello")
    public String hello(){
        return "我是提供者bbb的接口";
    }
}

这样集群中的模块就大致完成了,然后我们再来写调取集群的这个模块。这是配置文件,大同小异。 

RestTemplate 优雅的下载文件 resttemplate在哪个包_springboot_04

@EnableEurekaClient注解,需要注册到Eureka里。这样准备步骤就大概完成了。

2.结合

整合之前我们需要先在第三个模块pom.xml中导入Ribbon依赖,因为它负责调用集群中的接口。

<dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-netflix-ribbon</artifactId>
        </dependency>

然后我们找到第三个模块中的Application运行文件给他注入RestTemplate的对象。

package com.example.consumer;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.client.loadbalancer.LoadBalanced;
import org.springframework.cloud.netflix.eureka.EnableEurekaClient;
import org.springframework.context.annotation.Bean;
import org.springframework.web.client.RestTemplate;

@SpringBootApplication
@EnableEurekaClient
public class ConsumerApplication {

    public static void main(String[] args) {
        SpringApplication.run(ConsumerApplication.class, args);
    }

    @Bean
    @LoadBalanced //被ribbon来操作
    public RestTemplate restTemplate(){
        return new RestTemplate();
    }
}

在这里需要加一个@LoadBalanced的注解,这个注解主要的逻辑就是给RestTemplate增加拦截器,在请求之前对请求的地址进行替换,或者根据具体的负载策略选择服务地址,然后再去调用,这就是@LoadBalanced 注解的原理。

之后我们在此模块中写一个接口。先将RestTemplate注入。

package com.example.consumer.controller;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.client.RestTemplate;

@RestController
public class ConsumerController {
    @Autowired
    private RestTemplate restTemplate;

    @GetMapping("testRibbon")
    public String Ribbon(String serviceName){
        String result = restTemplate.getForObject("http://"+serviceName+"/hello",String.class);
        return result;
    }
}

这里的serviceName就是集群中两个模块其中之一的实例名称。

然后我们访问第三个模块。

RestTemplate 优雅的下载文件 resttemplate在哪个包_java_05

 

点击一下刷新按钮。 

RestTemplate 优雅的下载文件 resttemplate在哪个包_java_06

 

 

 

可以看到两个接口都调取成功,并且是点一下换一下的顺序。 


总结

这就是RestTeplate结合Ribbon,还是那句话,只要理清思路还是很简单的!喜欢的别忘点赞+关注!!!!!谢谢观看!!!!!!!!!