0
点赞
收藏
分享

微信扫一扫

服务配置 config分布式配置中心

一、分布式系统面临的配置问题

微服务意味着要将单体应用中的业务拆分成一个个子服务,每个服务的粒度相对较小,因此系统中会出现大量的服务。由于每个服务都需要必要的配置信息才能运行,所以一套集中式的、动态的配置管理设施是必不可少的。

SpringCloud提供了ConfigServer来解决这个问题,我们每一个微服务自己带着一个application.yml,上百个配置文件的管理。。。。

二、是什么

SpringCloud Config为微服务架构中的微服务提供集中化的外部配置支持,配置服务器为各个不同微服务应用的所有环境提供了一个中心化的外部配置。

通用的配置放在GitHub或gitee上,一次更改全部变化。

三、怎么用

SpringCloud Config分为服务端和客户端两部分。

服务端也称为分布式配置中心,它是一个独立的微服务应用,用来连接配置服务器并为客户端提供获取配置信息,加密/解密信息等访问接口。

客户端则是通过指定的配置中心来管理应用资源,以及与业务相关的配置内容,并在启动的时候从配置中心获取和加载配置信息配置服务器默认采用git来存储配置信息,这样就有助于对环境变量配置进行版本管理,并且可以通过git客户端工具来方便的管理和访问配置内容。

四、作用

集中管理配置文件

不同环境不同配置,动态化的配置更新,分环境部署。比如:dev/test/prod/beat/release

运行期间动态调整配置,不在需要在每个服务部署的机器上编写配置文件,服务会向配置中心统一拉取配置自己的信息

当配置发生变动时,服务不需要重启即可感知到配置的变化并应用新的配置

将配置信息以REST接口的形式暴露

官方网站:​​https://cloud.spring.io/spring-cloud-config/reference/html/​​

 五、Config 服务端配置与测试

 在github或gitee上创建一个名为“springcloud-config”仓库,本人是在gitee上创建的。

服务配置 config分布式配置中心_spring

 

 

 

服务配置 config分布式配置中心_spring_02

 

利用git命令在本地克隆。

服务配置 config分布式配置中心_spring_03

 

 创建“cloud-config-center-3344” 配置中心module

服务配置 config分布式配置中心_微服务_04

 

 改POM

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>ckfuture-springcloud</artifactId>
<groupId>com.ckfuture.springcloud</groupId>
<version>1.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>cloud-config-center-3344</artifactId>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-config-server</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
</dependencies>

</project>

建YML

server:
port: 3344
spring:
application:
name: cloud-config-center #注册进Eureka服务器的微服务名
cloud:
config:
server:
git:
uri: 自己github上的活gitee仓库的某个配置 #git上面的git仓库名字
#### 搜索目录
search-paths:
- springcloud-config
### 读取分支
label: master
# 服务注册到eureka地址
eureka:
client:
server-url:
defaultZone: http://localhost:7001/eureka

 

主启动类

 

package com.ckfuture.springcloud;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.config.server.EnableConfigServer;

@SpringBootApplication
@EnableConfigServer
public class MainAppconfigcenter3344 {
public static void main(String[] args) {
SpringApplication.run(MainAppconfigcenter3344.class,args);
}
}

 



举报

相关推荐

0 条评论