Spring 云配置客户端无法找到 PropertySource

Spring cloud config client Could not locate PropertySource

我的配置服务器使用 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

本机配置文件提供这样的配置 url: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

通过删除 contextPath: /config 和标签 configure 解决