spring cloud 配置中心git和本地地址配置

鵬明宇發表於2020-10-19
management:
  endpoint:
    shutdown:
      enabled: false
  endpoints:
    web:
      exposure:
        include: "*"
spring:
  application:
    name: config-single-server  # 應用名稱
#git應用地址
#  cloud:
#    config:
#      server:
#        git:
#          uri: http://***/penggp/**.git #配置檔案所在倉庫
#          username: penggp
#          password: *****
#          default-label: develop #配置檔案分支
#          search-paths: config  #配置檔案所在根目錄

#本地引用
  profiles:
    active: native
  # 配置中心
  cloud:
    config:
      server:
        native:
          search-locations: classpath:/config/ #本地檔案地址

相關文章