spring cloud服务注册与发现

Posted wzk-0000

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring cloud服务注册与发现相关的知识,希望对你有一定的参考价值。

1、注册中心服务端默认90秒检测一次,看服务是否还存活,不存活则删除掉服务,还存活则继续注册上去

2、

spring:
  profiles: dev
  cloud:
    config:
      name: cleanup-center
      profile: dev,discoveryClient
      discovery:
        enabled: true
        service-id: akucun-framework-config-server
eureka:
  client:
    service-url:
      defaultZone: http://merchant:[email protected]:8761/eureka/
    register-with-eureka: true
    fetch-registry: true
#    healthcheck:
#      enabled: true#客户端默认30秒心跳检测一次(服务端已有默认90面检测一次),客户端再增加是为了保护客户端服务。如果启用需注意,服务启动后30秒才会注册到注册中心上去
  instance:
    prefer-ip-address: true
    instance-id: ${spring.cloud.client.ip-address}:${server.port}

 

    

以上是关于spring cloud服务注册与发现的主要内容,如果未能解决你的问题,请参考以下文章

Spring Cloud Eureka服务注册与发现

Spring Cloud Eureka服务注册与发现

Spring Cloud Eureka 实现服务注册与发现

spring cloud服务注册与发现

SpringBoot + Spring Cloud Eureka 服务注册与发现

Spring Cloud:服务注册与发现