Version: Next
单机Eureka构建
基本步骤
- IDEA 生成
Eureka Server
端服务注册中心,默认端口号7001
Eureka Client
端cloud-provider-payment8001
将注册进Eureka Server
成为服务提供者provider
Eureka Client
端cloud-consumer-order80
将注册进Eureka Server
成为服务消费者consumer
模块
cloud-eureka-server7001
建module、改POM、写YAML、写主启动类、写业务类
pom.xml
Eureka Server 核心依赖
<!-- eureka-server --><dependency><groupId>org.springframework.cloud</groupId><artifactId>spring-cloud-starter-netflix-eureka-server</artifactId></dependency>
引用抽取的公共代码项目,引入 Spring Boot 的依赖
eureka server7001 pom依赖
<dependencies>
<!-- eureka-server -->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-eureka-server</artifactId>
</dependency>
<!-- 引用自己定义的api通用包,可以使用Payment支付Entity -->
<dependency>
<groupId>org.example</groupId>
<artifactId>cloud-api-commons</artifactId>
<version>1.0-SNAPSHOT</version>
</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>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<scope>runtime</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
application.yaml
- 设置端口为
7001
- 因为自己是注册中心,所以设置不把自己注册到注册中心
- 因为自己是注册中心,设置自己不需要参加检索服务
- 设置
Eureka Server
交互的地址:查询服务、注册服务都依赖这个地址
server:
port: 7001
eureka:
instance:
hostname: localhost #eureka服务端的实例名称
client:
# false表示不向注册中心注册自己
register-with-eureka: false
# false表示自己端就是注册中心,我的职责就是维护服务实例,并不需要检索服务
fetch-registry: false
service-url:
# 设置与Eureka Server交互的地址查询服务和注册服务都需要依赖这个地址
# 单机
defaultZone: http://${eureka.instance.hostname}:${server.port}/eureka/
主启动类
com.bsx.springcloud.EurekaMain7001
- 在标准 Spring Boot 启动类的基础上,添加
@EnableEurekaServer
注解,表明这是Eureka Server
组件@SpringBootApplication@EnableEurekaServerpublic class EurekaMain7001 {public static void main(String[] args) {SpringApplication.run(EurekaMain7001.class, args);}}
测试
- 启动
cloud-eureka-server7001
项目- 使用浏览器访问
localhost:7001
支付微服务入驻 EurekaServer
上一步中,已经可以通过页面查看注册中心信息,此时注册中心中的实例为空
- 需要将写好的微服务注册到到注册中心里
cloud-provider-payment8001
引入
Eureka Client
的 maven 依赖,这样才能使用注解将其设置为一个Eureka Client
<!--eureka client--><dependency><groupId>org.springframework.cloud</groupId><artifactId>spring-cloud-starter-netflix-eureka-client</artifactId></dependency>修改
application.yaml
添加Eureka
相关设置
- 将自己注册到 Eureka Server
- 开启检索注册中心已有注册信息,集群环境下必须开启才能配合 Ribbon 实现负载均衡
eureka:client:#表示是否将自己注册进EurekaServer默认为trueregister-with-eureka: true#是否从EurekaServer抓取已有的注册消息,默认为true,单节点无所谓,集群必须设置为true才能配合ribbon使用负载均衡fetch-registry: trueservice-url:#集群版# defaultZone: http://eureka7001.com:7001/eureka/,http://eureka7002.com:7002/eureka/#单机版 入驻到这个地址(就是注册中心地址)defaultZone: http://127.0.0.1:7001/eureka/在主启动类上添加
@EnableEurekaClient
注解
测试
- 启动
Eureka Server 7001
注册中心- 启动
cloud-provider-payment8001
微服务- 再次访问
localhost:7001
可以看到微服务已经注册到了注册中心
注意
注册中心 Application
栏中显示的应用名称,就是微服务模块在自己的 application.yaml
中配置的 spring.application.name
属性的值
订单微服务入驻 EurekaServer
如法炮制
- pom 引入 eurekaClient 坐标
application.yaml
添加 eureka 设置
- 给自己起个命
- 把自己注册到 eureka 注册中心
spring:application:name: cloud-order-serviceeureka:client:#表示是否将自己注册进EurekaServer默认为trueregister-with-eureka: true#是否从EurekaServer抓取已有的注册消息,默认为true,单节点无所谓,集群必须设置为true才能配合ribbon使用负载均衡fetch-registry: trueservice-url:# 单机版本defaultZone: http://localhost:7001/eureka# 集群版#defaultZone: http://eureka7001.com:7001/eureka/,http://eureka7002.com:7002/eureka/
- 主启动类添加
@EnableEurekaClient
注解
测试
- 启动 EurekaServer 7001 注册中心
- 启动 privider8001 微服务
- 启动 consumer80 微服务
- 访问 localhost:7001