zoukankan      html  css  js  c++  java
  • springboot 远程拉取配置中心配置

    增加jar包:

    <dependency>
    <groupId>org.springframework.cloud</groupId>
    <artifactId>spring-cloud-starter-config</artifactId>
    <version>2.0.3.RELEASE</version>
    </dependency>

    增加配置文件bootstrap.properties:

    spring.cloud.config.name=xxxx
    spring.cloud.config.label=master
    spring.cloud.config.profile=dev
    spring.cloud.config.uri=http://xx:8087/

    需要增加配置的名字[需要运维参与]

    参考 https://blog.csdn.net/u012373281/article/details/89761496

  • 相关阅读:
    sort()
    type()
    reverse()
    pop()
    remove()
    max()
    len()
    Ext.Js核心函数( 三)
    聚簇索引和非聚簇索引区别
    Ext.js入门(二)
  • 原文地址:https://www.cnblogs.com/austinspark-jessylu/p/14789568.html
Copyright © 2011-2022 走看看