Ribbon是Netflix发布的开源项目,主要功能是提供客户端的软件负载均衡算法。java
将Netflix的中间层服务链接在一块儿。Ribbon客户端组件提供一系列完善的配置项如链接超时,重试等。简单的说,就是在配置文件中列出Load Balancer(简称LB)后面全部的机器,Ribbon会自动的帮助你基于某种规则(如简单轮询,随即链接等)去链接这些机器。咱们也很容易使用Ribbon实现自定义的负载均衡算法。web
先启动上篇文章中的注册中心eureka-server:8001, 以及hello-service:8011,接着修改hello-service项目配置文件中的端口,改为8012,再次运行用户服务项目。算法
执行成功,查看Eureka注册中心,能够看到有用户服务应用有两个端口对应。spring
(若是是IDEA用户,须要修改Application.java的执行方式,默认是单实例运行,因此你在运行8011的项目,修改端口没法再次运行。)缓存
pom.xml:app
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-eureka</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-ribbon</artifactId>
</dependency>
application.properties:负载均衡
spring.application.name=hello-consumer-ribbon server.port=8021 eureka.client.serviceUrl.defaultZone=http://localhost:8001/eureka/spring.application.name=hello-consumer-ribbon server.port=8021 eureka.client.serviceUrl.defaultZone=http://localhost:8001/eureka/
启动类:异步
package cn.demo; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.cloud.client.loadbalancer.LoadBalanced; import org.springframework.cloud.client.discovery.EnableDiscoveryClient; import org.springframework.context.annotation.Bean; import org.springframework.http.ResponseEntity; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; import org.springframework.web.client.RestTemplate; @SpringBootApplication @EnableDiscoveryClient @RestController public class HelloConsumerRibbonApplication { public static void main(String[] args) { SpringApplication.run(HelloConsumerRibbonApplication.class, args); } @Bean @LoadBalanced public RestTemplate restTemplate () { return new RestTemplate(); } @Autowired private RestTemplate restTemplate; //获取服务实例,做用为以后console显示效果;"http://USER-SERVICE/hello?name= 标识注册的服务。USER-SERVICE在eureka注册的服务名 @RequestMapping("hello") public ResponseEntity<String> hello (String name) { return restTemplate.getForEntity("http://USER-SERVICE/hello?name=" + name, String.class); } }
4、测试
测试服务消费
http://localhost:8021/hello?name=ribbonmaven
测试负载均衡:
咱们在hello-service hello方法中加上日志打印,而后再分别启动 hello-service:8012,8002,而后屡次访问 http://localhost:8021/hello?name=ribbon,能够看到两个hello-service项目的控制台都有日志输出,表示实现了负载均衡。spring-boot
使用RestTemplate+Ribbon必须指定调用服务名称,如上面的HELLO-SERVICE,为了方便使用,SpringCloud还集成了Feign消费方式。————————————————