spring-cloud-config-server之拉取git失敗解決方案

  • 最近在搞springcloud-config配置中心,windows中的git出了點小毛病,本地的global配置文件一直處於失效狀態,小烏龜拉代碼也不行,可是git bash 黑窗口使用git clone命令是能夠的,但仍是須要輸入帳號密碼,查看了springcloud官方文檔,能夠指定git路徑爲本地路徑
  • 文檔以下:
  • application.properties. 
    
    server.port: 8888
    spring.cloud.config.server.git.uri: file://${user.home}/config-repo
    where ${user.home}/config-repo is a git repository containing YAML and properties files.
    
    [Note]
    in Windows you need an extra "/" in the file URL if it is absolute with a drive prefix, e.g. file:///${user.home}/config-repo.

    關於怎麼須要什麼jar包依賴,隨便找個帖子都有這就不說了,主要看這段git

  • spring.cloud.config.server.git.uri: file://${user.home}/config-repo

    配置後經過請求ip:portspring

  • /{application}/{profile}[/{label}]
    /{application}-{profile}.yml
    /{label}/{application}-{profile}.yml
    /{application}-{profile}.properties
    /{label}/{application}-{profile}.properties

    案例:localhost:8081/master/testwindows

相關文章
相關標籤/搜索