# 151. 商品详情页动态渲染系统:Spring Cloud 之 Ribbon+Rest 调用负载均衡
上一章节我们学习了:
- 如何发布一个 eureka 注册中心
- 如何发布一个服务注册到 erueka server
这么服务之间怎么调用呢?本章讲解使用 ribbon 来通过 rest 方式调用服务接口
再创建一个 greeting-service 项目,注册到 eruak server,然后通过 ribbon 调用 eshop-eurela-client 的一个接口
greeting-service/build.gradle
plugins {
id 'org.springframework.boot' version '2.1.6.RELEASE'
id 'java'
}
apply plugin: 'io.spring.dependency-management'
ext {
set('springCloudVersion', "Greenwich.SR2")
}
dependencies {
implementation 'org.springframework.cloud:spring-cloud-starter-netflix-eureka-client'
implementation 'org.springframework.boot:spring-boot-starter-web'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
// 在 boot2 中 spring-cloud-starter-ribbon 已过时
// https://cloud.spring.io/spring-cloud-netflix/multi/multi_spring-cloud-ribbon.html
compile 'org.springframework.cloud:spring-cloud-starter-netflix-ribbon'
}
dependencyManagement {
imports {
mavenBom "org.springframework.cloud:spring-cloud-dependencies:${springCloudVersion}"
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
application.yml
server:
port: 9005
spring:
application:
name: greeting-service
eureka:
client:
serviceUrl:
defaultZone: http://localhost:8761/eureka/
1
2
3
4
5
6
7
8
9
10
11
12
2
3
4
5
6
7
8
9
10
11
12
Application
package cn.mrcode.cache.eshop.greetingservice;
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.context.annotation.Bean;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.client.RestTemplate;
@SpringBootApplication
@RestController
public class Application {
@Autowired
private RestTemplate restTemplate;
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
@RequestMapping("/")
public String home() {
String rest = restTemplate.getForObject("http://eshop-eurela-client", String.class);
return rest;
}
// 在spring容器中注入一个bean,RestTemplate,作为rest服务接口调用的客户端
// @LoadBalanced标注,代表对服务多个实例调用时开启负载均衡
@Bean
@LoadBalanced
public RestTemplate restTemplate() {
return new RestTemplate();
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
在项目中引用 spring-cloud-starter-netflix-ribbon ,会触发自动配置,
所以这里使用 @LoadBalanced
注解才会生效;如果不包含该项目也可以使用,
只是没有 @LoadBalanced
负载均衡的效果了
测试流程:
- 将 eshop-eurela-client 项目启动两个实例,端口为 9000、9001
- 将 greeting-service 启动
- 访问地址:http://localhost:9005/ 查看响应的内容
有 ribbon 均衡负载的情况下,访问一次就会变换一次端口。