springcloud-Eureka注册中心搭建

2021-06-28 11:06

阅读:672

标签:key   stat   host   mode   variable   注册   registry   eureka   lease   

  1. 导入相关的pom依赖

  org.springframework.cloud
  spring-cloud-starter-eureka-server
  1.4.6.RELEASE

 

  1. 配置相关的配置文件
server:
port: 7001
?
eureka:
instance:
  hostname: localhost
client:
  #是否注册到注册中心
  register-with-eureka: false
  #表示自己就是注册中心
  fetch-registry: false
  service-url:
    # 配置多个表示集群
    defaultZone: http://localhost:7002/eureka, http://localhost:7003/eureka
?
server:
  #表示开启eureka的自我保护机制,其实默认就是开启的
  enable-self-preservation: true

 

  1. 编写主启动类开启服务
@SpringBootApplication
@EnableEurekaServer
public class EurekaServer_7001 {
   public static void main(String[] args) {
       SpringApplication.run(EurekaServer_7001.class, args);
  }
}

 

springcloud-Eureka注册中心搭建

标签:key   stat   host   mode   variable   注册   registry   eureka   lease   

原文地址:https://www.cnblogs.com/zhu12/p/14930593.html


评论


亲,登录后才可以留言!