SpringCloud配置步骤与使用说明

上一篇 << 下一篇 >>>SpringCloud配置更新后的刷新机制


1.环境创建

git地址配置好环境信息,在根目录下创建config目录存放配置
可以使用码云环境搭建git服务器端
码云环境地址:https://gitee.com/jarye/events

2.ConfigServer搭建

2.1jar包依赖


        
            org.springframework.cloud
            spring-cloud-config-server
        

2.2相关配置

spring:
  application:
    ####注册中心应用名称
    name: config-server
  cloud:
    config:
      server:
        git:
          ###git环境地址
          uri: https://gitee.com/jarye/config.git
          ####搜索目录
          search-paths:
            - config  
      ####读取分支      
      label: master

2.3项目启动

项目启动
@EnableConfigServer //开启分布式配置中心服务器端
@SpringBootApplication
public class ConfigServerApplication {
    public static void main(String[] args) {
        SpringApplication.run(ConfigServerApplication.class, args);
    }
}
读取配置文件信息 http://127.0.0.1:8888/config-client-dev.properties

3.ConfigClient配置

3.1jar包依赖


        
            org.springframework.cloud
            spring-cloud-config-client
        

3.2 配置信息

spring:
  application:
    ####注册中心应用名称
    name:  config-client
  cloud:
    config:
    ####读取后缀
      profile: dev
      ####读取config-server注册地址
      discovery:
        service-id: config-server
        enabled: true

3.3配置文件读取

读取配置文件
@RestController
public class IndexController {
    @Value("${name}")
    private String name;

    @RequestMapping("/name")
    private String name() {
        return name;
    }
}

推荐阅读:
<<<传统配置的缺陷与常用分布式配置中心介绍
<< << << << << << << << << << << << << << << << <<

你可能感兴趣的:(SpringCloud配置步骤与使用说明)