随着线上项目变的日益庞大,每个项目都有各种配置文件,如果采用分布式的开发模式,需要的配置文件随着服务增加而不断增多。某一个基础服务信息变更,都会引起一系列的更新和重启,运维成本高也容易出错。配置中心便是用来解决此类问题的。
一个配置中心提供的核心功能应该有什么:
Spring Cloud Config项目是一个解决分布式系统的配置管理方案。它包含了Client和Server两个部分,server提供配置文件的存储、以接口的形式将配置文件的内容提供出去,client通过接口获取数据、并依据此数据初始化自己的应用。Spring Cloud使用git或svn存放配置文件,默认情况下使用git。
一、Config server
0. 使用github创建配置文件
1. 创建工程config_server, pom.xml如下:
4.0.0
com.kevin
config_server
0.0.1-SNAPSHOT
jar
config_server
http://maven.apache.org
UTF-8
org.springframework.boot
spring-boot-starter-parent
2.1.4.RELEASE
org.springframework.boot
spring-boot-starter-web
org.springframework.boot
spring-boot-starter-test
test
org.springframework.cloud
spring-cloud-config-server
org.springframework.cloud
spring-cloud-dependencies
Greenwich.SR1
pom
import
2. application.properties
spring.application.name=configServer
server.port=9111
#git地址
spring.cloud.config.server.git.uri=https://github.com/kevin4j/spring-cloud.git
#文件目录
spring.cloud.config.server.git.search-paths=config-file
spring.cloud.config.server.git.username=
spring.cloud.config.server.git.password=
3. Application.java开启ConfigServer
package com.kevin.config_server;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.config.server.EnableConfigServer;
@SpringBootApplication
@EnableConfigServer
public class Application {
public static void main( String[] args ) {
SpringApplication.run(Application.class, args);
}
}
4. 启动后访问http://127.0.0.1:9111/eurekaRibbon/dev
也可以直接访问文件内容:http://127.0.0.1:9111/eurekaRibbon-dev.properties
二、Config Client,在eureka_ribbon的基础上进行调整
1. pom.xml引入config
org.springframework.cloud
spring-cloud-starter-config
2. 增加config配置文件bootstrap.properties
#配置文件名
spring.cloud.config.name=eurekaRibbon
#配置环境
spring.cloud.config.profile=dev
#config server地址
spring.cloud.config.uri=http://127.0.0.1:9111
spring.cloud.config.label=master
3. application.properties
spring.application.name=eurekaRibbon
server.port=9201
eureka.client.serviceUrl.defaultZone=http://localhost:9101/eureka/
eureka.client.healthcheck.enabled=true
4. 测试类
@RestController
public class HelloController {
@Value("${hello.name}")
private String helloName;
@RequestMapping("/getHelloName")
public String getHelloName() {
return this.helloName;
}
}
5. 重新启动eureka_ribbon,可以看出启动时会先读取配置中心的配置,即bootstrap.yml优先级高于application.yml先加载
6. 测试http://127.0.0.1:9201/getHelloName
参考:
https://cloud.spring.io/spring-cloud-static/Greenwich.SR1/single/spring-cloud.html#_spring_cloud_config
http://www.ityouknow.com/springcloud/2017/05/22/springcloud-config-git.html