Eureke注册中心整合Springboot的大概流程

1. 引入Eureka 依赖包

    <!-- eureka -->
    <dependency>
        <groupId>org.springframework.cloud</groupId>
        <artifactId>spring-cloud-starter-netflix-eureka-server</artifactId>
    </dependency>

2. 配置文件

接下来在 src/main/resources 下面创建一个 application.properties (或者yml)属性文件,增加下面的配置:

spring.application.name=eureka-server
server.port=8761
# 由于该应用为注册中心, 所以设置为false, 代表不向注册中心注册自己
eureka.client.register-with-eureka=false
# 由于注册中心的职责就是维护服务实例, 它并不需要去检索服务, 所以也设置为 false
eureka.client.fetch-registry=false

eureka.client.register-with-eureka 一定要配置为 false,不然启动时会把自己当作客户端向自己注册,会报错

3. 启动类加注解 @EnableEurekaServer

@EnableEurekaServer
@SpringBootApplication
public class EurekaApplication {
    public static void main(String[] args) {
        SpringApplication.run(EurekaApplication.class,args);
    }
}

4. 维护的微服务向Eureka注册中心注册,微服务启动类上使用注解 @EnableEurekaClient

上一篇:SpringCloud 2020.0.4 系列之Eureka


下一篇:分布式事务和锁