Spring Cloud Config客户端无法找到PropertySource

时间:2018-07-27 16:18:56

标签: spring git server config discovery

我的配置服务器使用natie文件系统工作正常,并且开发配置文件配置了contextPath:/ config

spring:
  application:
    name: dcit-config
  profiles:
    active: native

management:
  endpoints:
    web:
      exposure:
        include: info, health, metrics
  metrics:
    export:
      atlas:
        enabled: true

---
spring:
  profiles: native
  application:
    name: dcit-config
  cloud:
    config:
      server:
        native:
          searchLocations: classpath:/config/
server:
  port: 2003
eureka:
  instance:
    prefer-ip-address: true
    lease-renewal-interval-in-seconds: 5
    lease-expiration-duration-in-seconds: 20
  client:
    serviceUrl:
      defaultZone: http://dcit:dcit@localhost:1023/eureka
    registry-fetch-interval-seconds: 10

---
spring:
  profiles: dev
  application:
    name: dcit-config
  cloud:
    config:
      server:
        git:
          uri: http://xxx/git/Arch/dcit.git
          username: user
          password: pass
          searchPaths: dcit-config/src/main/resources/config/
          clone-on-start: true
      fail-fast: true
server:
  port: 2002
  contextPath: /config
eureka:
  instance:
    prefer-ip-address: true
    lease-renewal-interval-in-seconds: 5
    lease-expiration-duration-in-seconds: 20
  client:
    serviceUrl:
      defaultZone: http://dc:dc@localhost:1023/eureka
    registry-fetch-interval-seconds: 10

本机配置文件提供如下网址的配置:http://hostname:2003/config/app-profile.yml,并且我的客户端运行正常。

但是,如果我使用开发人员配置文件,则URL http://hostname:2002/config/app-profile.yml也可以使用,但是我的客户遇到了错误: java.lang.IllegalStateException:无法找到PropertySource并设置了快速失败属性,失败

我的客户端配置:

spring:
  application:
    name: dcit-auth
  profiles:
    active: dev
  cloud:
    config:
      fail-fast: true
      discovery:
        service-id: dcit-config
        enabled: true
      profile: ${spring.profiles.active}
      label: ${spring.profiles.active}

---
spring:
  profiles: dev
eureka:
  instance:
    prefer-ip-address: true
    lease-renewal-interval-in-seconds: 5
    lease-expiration-duration-in-seconds: 20
  client:
    serviceUrl:
      defaultZone: http://dc:dc@localhost:1023/eureka
    registry-fetch-interval-seconds: 10

0 个答案:

没有答案