1

我有一个场景,每当我们将配置服务器配置客户端一起使用时,我们都需要放入 bootstrap.yaml。假设我的配置服务器在端口9001上,所以我需要在属性文件中硬核这个值,即http://localhost:9001:/

我的问题是,“可以使用eureka 服务器将配置客户端连接到配置服务器,以便我们可以删除核心属性”

4

1 回答 1

0

这些是我使用的属性,解决了我的问题

尤里卡房产

spring.application.name=discovery-server
eureka.client.registerWithEureka = true
eureka.client.fetchRegistry = false
server.port = 9050
eureka.client.serviceUrl.defaultZone=http://localhost:9050/eureka/

配置服务器属性

spring:
  application:
    name: configserver
  cloud:
    config:
      server:
        git:
          uri: git-url
          username: git-username
          password: git-password
      fail-fast: true
    
server:
  port: 8080
    
eureka:
   client:
      serviceUrl:
         defaultZone: http://localhost:9050/eureka

配置客户端属性

spring:
  application:
    name: x
  cloud:
    config:
      profile: dev
      fail-fast: true
      discovery:
        enabled: true
        service-id: CONFIGSERVER
      retry:
        initial-interval: 2000
        multiplier: 1.5
        max-interval: 60000
        max-attempts: 100
        
server:
  port: 8081

eureka:
   client:
      serviceUrl:
         defaultZone: http://localhost:9050/eureka
      fetch-registry: true
   instance:
    lease-renewal-interval-in-seconds: 10
于 2020-09-15T17:41:09.147 回答