美文网首页
Spring Clound 系列

Spring Clound 系列

作者: BillZhang88 | 来源:发表于2020-02-20 12:53 被阅读0次

eureka 初步了解

  • 搭建eureka 服务
image.png
image.png
@EnableEurekaServer
@SpringBootApplication
public class ServiceApplication {

   public static void main(String[] args) {
       SpringApplication.run(ServiceApplication.class, args);
   }

}

统一使用推荐的yml 文件
server:
 port: 8761
eureka:
 client:
   service-url:
     defaultZone: http://localhost:8761/eureka #localhost一般为服务器ip
   register-with-eureka: false #对于注册中心的优化,不注册本服务
   fetch-registry: false
当然配置文件的端口的不同,可以注册不同的服务,例如:
# erurek的注册中心地址
server:
  port: 789[1:3]  #注册中心的地址
spring:
  application:
    name: eureka-server
eureka:
  client:
    service-url: 
      defaultZone: [http://localhost:7891/eureka,http://localhost:7892/eureka,http://localhost:7893/eureka](http://localhost:7891/eureka,http://localhost:7892/eureka,http://localhost:8763/eureka)
    register-with-eureka: true # 把自己注册到别的eureka
    fetch-registry: false # 注册中心的优化,代表该注册中心服务,不拉取任何的服务列表

相关文章

网友评论

      本文标题:Spring Clound 系列

      本文链接:https://www.haomeiwen.com/subject/asqxqhtx.html