共计 2059 个字符,预计需要花费 6 分钟才能阅读完成。
什么是 Eureka
Eureka 是 Netfilx 开源的一个用来实现微服务的注册与发现的组件。它蕴含 Server 和 Client 两局部。
为什么要有 Eureka
例如目前有两个服务别离为服务 A,服务 B,咱们能够在服务 A 调用服务 B 的接口地址实现调用,然而当服务间的调用关系简单起来的时候,比方服务 A 还须要调用服务 CDE,那么服务 A 须要保护它调用的所有服务的地址,一旦地址的变更都须要手动去批改。
当应用了 Eureka 这样的服务治理框架后,服务 ABCDE 能够一起注册到 EurekaServer 服务上, 间接通过服务名来调用其余服务。
Eureka 的应用
通过 Eureka,实现消费者服务 80 通过服务名调用服务提供者 8001 的接口。
cloud-eureka-server7001 要害代码
引入 server 依赖:
<!--eureka-server-->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-eureka-server</artifactId>
</dependency>
server 端配置:
eureka:
instance:
hostname: localhost
client:
register-with-eureka: false #false 示意不向注册核心注册本人。fetch-registry: false #false 示意本人端就是注册核心,我的职责就是保护服务实例,并不需要去检索服务
service-url:
#集群指向其它 eureka
defaultZone: http://eureka7002.com:7002/eureka/
#单机就是 7001 本人
defaultZone: http://${eureka.instance.hostname}:${server.port}/eureka/
启动类注解:
@SpringBootApplication
@EnableEurekaServer
public class EurekaMain7001
{public static void main(String[] args) {SpringApplication.run(EurekaMain7001.class, args);
}
}
cloud-provider-payment8001 要害代码
引入 client 依赖:
<!--eureka-client-->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
</dependency>
client 端配置:
eureka:
client:
#示意是否将本人注册进 EurekaServer 默认为 true。register-with-eureka: true
#是否从 EurekaServer 抓取已有的注册信息,默认为 true。单节点无所谓,集群必须设置为 true 能力配合 ribbon 应用负载平衡
fetchRegistry: true
service-url:
defaultZone: http://localhost:7001/eureka
启动类注解:
@SpringBootApplication
@EnableEurekaClient
public class PaymentMain8001 {public static void main(String[] args) {SpringApplication.run(PaymentMain8001.class, args);
}
}
cloud-consumer-order80
要害代码同服务提供者
通过服务名调用其余服务的接口(RestTemple 记得要加 @LoadBalanced,否则找不到服务名):
public static final String PAYMENT_URL = "http://CLOUD-PAYMENT-SERVICE";
@GetMapping("/consumer/payment/get/{id}")
public CommonResult<Payment> getPayment(@PathVariable("id") Long id)
{return restTemplate.getForObject(PAYMENT_URL+"/payment/get/"+id,CommonResult.class);
}
如果应用 Eureka 集群
EurekaServer 配置
# 集群指向其它 eureka
defaultZone: http://eureka7002.com:7002/eureka/
服务 Cient 配置
# 集群
#defaultZone: http://eureka7001.com:7001/eureka,http://eureka7002.com:7002/eureka #
正文完
发表至: spring-cloud
2021-01-16