Spring Cloud Config 使用本地配置文件
一、简介 在分布式系统中,由于服务数量巨多,为了方便服务配置文件统一管理,实时更新,所以需要分布式配置中心组件。在Spring Cloud中,有分布式配置中心组件spring cloud config ,它支持配置服务放在配置服务的内存中(即本地),也支持放在远程Git仓库中。在spring cloud config 组件中,分两个角色,一是config server,二是config client。 二、配置 2.1 Spring Cloud Config Server项目 1 pom.xml中导入Config Server需要的包 <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-config-server</artifactId> </dependency> 2 在Application类中添加@EnableConfigServer注解 package com.sunbufu; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.cloud.config.server.EnableConfigServer; @EnableConfigServer @SpringBootApplication public class ConfigServerApplication { public static void main(String[] args) { SpringApplication.run(ConfigServerApplication.class, args); } } 3 修改配置文件application.yml,指定本地客户端配置文件的路径 spring: profiles: active: native cloud: config: server: native: searchLocations: F:/conf 4 准备客户端配置文件 client-dev.yml文件的内容: server: #设置成0,表示任意未被占用的端口 port: 8081 nickName: world 2....