• Spring Cloud 坑点


      

     1 配置中心    

    1、config 默认Git加载
    通过spring.cloud.config.server.git.uri指定配置信息存储的git地址,比如:https://github.com/spring-cloud-samples/config-repo
    2、加载本地开发环境
    ### config server native
    spring.profiles.active=native
    spring.cloud.config.server.native.searchLocations=classpath:/config
    3、加载 本地物理环境
    spring.profiles.active=native
    spring.cloud.config.server.native.searchLocations=file:E:\Java\Workspaces\sts\doc\file\config
    
    4、加载svn环境  http://localhost:8888/{application}/{profile}/{label},比如:http://localhost:8888/dmeo/development/trunk
    ### config server svn
    spring.cloud.config.server.svn.uri=http://localhost:8888/dmeo/development/trunk
    spring.cloud.config.server.svn.username=xxx
    spring.cloud.config.server.svn.password=xxx
    spring.profiles.active=subversion
    

     特别注意  svn 环境 需要 引入 SVN jar包 

    <groupId>org.tmatesoft.svnkit</groupId>
    <artifactId>svnkit</artifactId>

           

          

  • 相关阅读:
    洛谷P1261 服务器储存信息问题
    洛谷P2110 欢总喊楼记
    洛谷P2482 [SDOI2010]猪国杀
    洛谷P2756 飞行员配对方案问题
    洛谷P2763 试题库问题
    洛谷P2774 方格取数问题
    Huffman编码
    SA后缀数组
    KMP
    LCA
  • 原文地址:https://www.cnblogs.com/atliwen/p/6225085.html
Copyright © 2020-2023  润新知