现在已经有一个payment8001,再创建一个payment8002.实现一个服务提供方的集群。
一、搭建payment8001
-
创建子模块payment8001
-
在子模块的pom文件导入依赖
<dependencies>
<!-- eureka-client -->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
</dependency>>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
- 启动类修改
增加@EnableEurekaClient
注解
@SpringBootApplication
// 表示是一个Eureka的客户端
@EnableEurekaClient
public class PaymentMain8001 {
public static void main(String[] args) {
SpringApplication.run(PaymentMain8001.class, args);
}
}
- yaml文件
server:
port: 8001
spring:
application:
# 微服务的名称
name: cloud-payment-service
eureka:
client:
# true表示向注册中心注册自己,默认为true
register-with-eureka: true
# 是否从EurekaServer抓取已有的注册信息,默认为true。
# 单节点无所谓,集群必须设置true才能够配合ribbon使用负载均衡
fetch-registry: true
service-url:
# 设置与eureka sever交互的地址与查询服务、注册服务
# defaultZone : http://localhost:7001/eureka/ 单机版
defaultZone: http://eureka7001.com:7001/eureka/, http://eureka7002.com:7002/eureka/
instance:
# 修改实例id
instance-id: payment-service8001
# 访问路径可以显示IP地址
prefer-ip-address: true
二、搭建payment8002
-
创建子模块payment8001
-
在子模块的pom文件导入依赖
直接复制payment8001的依赖 -
启动类
@SpringBootApplication
@EnableEurekaClient
public class PaymentMain8002 {
public static void main(String[] args) {
SpringApplication.run(PaymentMain8002.class, args);
}
}
- yaml文件
server:
port: 8002
spring:
application:
# 微服务的名称
name: cloud-payment-service
eureka:
client:
# true表示向注册中心注册自己,默认为true
register-with-eureka: true
# 是否从EurekaServer抓取已有的注册信息,默认为true。
# 单节点无所谓,集群必须设置true才能够配合ribbon使用负载均衡
fetch-registry: true
service-url:
# 设置与eureka sever交互的地址与查询服务、注册服务
# defaultZone : http://localhost:7001/eureka/ 单机版
defaultZone: http://eureka7001.com:7001/eureka/, http://eureka7002.com:7002/eureka/
保持spring.application.name
与7001的一致
=====》 cloud-payment-service 里面有两个服务提供方
在Eureka显示如下:
三、消费方对服务方集群的调用
从上面,确认了应用程序名称是 CLOUD-CONSUMER-ORDER
,里面有两个实例 8001
以及 8002
。
那么,其实思路就是:消费方发送请求http://localhost/consumer/payment/43 ,内部转发 就直接可以 向 CLOUD-CONSUMER-ORDER
发送,然后 CLOUD-CONSUMER-ORDER
自己按照不同算法把请求发给每个服务方的微服务。
就类似于以前单机,内部发送请求是向
http://localhost:8001/payment/43 (指定了端口号)
======> http://CLOUD-PAYMENT-SERVICE/payment/43。
(不需要指定端口号,只需要知道你发送的地方名称就好。他会自己根据算法发送到 8001 / 8002 …)
那么,就可以得到结论了。需要修改两处
- 修改发送地址(即:向
CLOUD-CONSUMER-ORDER
发送) - 赋予RestTemplate负载均衡的能力(即,通过不同算法把请求发给每个服务方的微服务)
我这里就是使用简单的 RestTemplate
,进行通信。
修改config
@Configuration
public class ApplicationContextConfig {
@Bean
@LoadBalanced // 使用LoadBalanced注解赋予RestTemplate负载均衡的能力 轮询算法
public RestTemplate getRestTemplate(){
return new RestTemplate();
}
}
修改发送地址
@RestController
@Slf4j
@RequestMapping(value = "/consumer")
public class OrderController {
// private static final String PAYMENT_URL = "http://localhost:8001";
private static final String PAYMENT_URL = "http://CLOUD-PAYMENT-SERVICE";
@Resource
private RestTemplate restTemplate;
@GetMapping(value = "/payment/{id}")
public Result getPaymentById(@PathVariable("id") Long id) {
return restTemplate.getForObject(PAYMENT_URL + "/payment/" + id, Result.class);
}
yml文件
server:
port: 80
spring:
application:
# 微服务的名称
name: cloud-consumer-order
eureka:
client:
# true表示向注册中心注册自己,默认为true
register-with-eureka: true
# 是否从EurekaServer抓取已有的注册信息,默认为true。
# 单节点无所谓,集群必须设置true才能够配合ribbon使用负载均衡
fetch-registry: true
service-url:
# 设置与eureka sever交互的地址与查询服务、注册服务
# defaultZone : http://localhost:7001/eureka/ 单机
defaultZone : http://eureka7001.com:7001/eureka/, http://eureka7002.com:7002/eureka/
测试 http://localhost/consumer/payment/43
,刷新看结果的不同如下
{“code”:200,“message”:“success8002”,“data”:{“id”:43,“serial”:“20211116141012”}}
{“code”:200,“message”:“success8001”,“data”:{“id”:43,“serial”:“20211116141012”}}
上一章:chapter04:简单的Eureka搭建
下一章:chapter06:Eureka服务发现(接口获取Eureka信息)