SpringCloud(5) - Config分布式配置
2021-04-09 23:25
标签:有助于 ice block etc 指定 ring art add default 微服务意味着要将单体应用中的业务拆分成一个个子服务,每个服务的粒度相对较小,因此系统中会出现大量的服务。由于每个服务都需要必要的配置信息才能运行,所以一套集中式的、动态的配置管理设施是必不可少的。SpringCloud 提供了 ConfigServer 来解决这个问题,我们每一个微服务自己带着一个 application.yml,如果上百个配置文件要修改的话,简直要疯了。 SpringCloud Config 为微服务架构中的微服务提供集中化的外部配置支持,配置服务器为各个不同微服务应用的所有环境提供了一个中心化的外部配置。 SpringCloud Config 分为服务端和客户端两部分: ● 服务端也称为分布式配置中心,它是一个独立的微服务应用,用来连接配置服务器并为客户端提供获取配置信息,加密/解密信息等访问接口。 ● 客户端则是通过指定的配置中心来管理应用资源,以及业务相关的配置内容,并在启动的时候从配置中心获取和加载配置信息配置服务器默认采用git来存储配置信息,这样就有助于对环境配置进行版本管理,并且可以通过git客户端工具来方便的管理和访问配置内容。 ● 集中管理配置文件 ● 不同环境不同配置,动态化的配置更新,分环境部署,比如 dev/ test/ prod/ beta/ release ● 运行期间动态调整配置,不再需要每个服务部署的机器上编写配置文件,服务会向配置中心统一拉取配置自己的信息。 ● 当配置发生变动时,服务不需要重启即可感知到配置的变化并应用新的配置 ● 将配置信息以REST接口的形式暴露 由于SpringCloud Config 默认使用 Git 来存储配置文件(也支持SVN和本地文件),但最推荐的还是 Git,而且使用 http / https 访问的形式。 Git环境搭建: ① 在码云新建一个仓库 springcloud-config 创建成功后,选择Http方式克隆项目 ② 在电脑中,某一个文件夹下,右键打开Git Bash Here,将我们刚才创建的仓库克隆下来,遇到问题,输入yes ③ 在克隆下来的项目目录下,新建一个文件 application.yaml,在该文件中,写一些简单的配置 ④ 将我们刚写好的 application.yaml 提交到码云上 ① 新建一个模块, springcloud-config-server-3344 ② 导入依赖 ③ 新建 application.yaml ,编写配置 ④ 编写主启动类,并添加注解 @EnableConfigServer ⑤ 启动该模块,访问 http://localhost:3344/config-server-dev.yml 就可以访问到我们上传到码云中的dev配置了 说明: 1. 如果在GitHub上建立的仓库是私有的,那么还要加上spring.cloud.config.server.git.username和spring.cloud.config.server.git.password 这两个配置 2. springcloud config 的URL与配置文件的映射关系如下: 3. 如果github上建立的目录下的文件为configtest-dev.properties,那么当启动配置中心服务器端时,可以通过http://localhost:8050/configtest/dev/master访问配置文件,如果访问成功则表示配置中心搭建成功 ① 在我们克隆下来的项目目录下,新建一个文件 config-client.yaml ,写一些配置 ② 将该配置文件push到远程仓库 ③ 新建一个模块 springcloud-config-client-3355 ,导入依赖 ④ 新建配置文件 bootstrap.yaml ,这也是 springboot 的配置文件 bootstrap.yaml 和 application.yaml 的区别: ● bootstrap.yaml ● application.yaml ⑤ 编写一个Controller类 ⑥ 创建主启动类 ⑦ 启动测试 bootstrap配置了dev环境访问 http://localhost:8201/config 配置test环境访问 http://localhost:8202/config SpringCloud(5) - Config分布式配置 标签:有助于 ice block etc 指定 ring art add default 原文地址:https://www.cnblogs.com/Dm920/p/13174070.html一、概述
1)分布式系统面临的问题 - 配置文件的问题
2)什么是 SpringCloud-Config 分布式配置中心
3)SpringCloud config分布式配置中心能干嘛
4)SpirngCloud Config 分布式配置中心与 Github 整合
spring:
profiles:
active: dev
---
spring:
profiles: dev
application:
name: springcloud-config-dev
---
spring:
profiles: test
application:
name: springcloud-config-test
git add .
git commit -m "描述"
git push origin master
二、服务端连接Git配置
dependency>
groupId>org.springframework.cloudgroupId>
artifactId>spring-cloud-config-serverartifactId>
version>2.1.1.RELEASEversion>
dependency>
dependency>
groupId>org.springframework.bootgroupId>
artifactId>spring-boot-starter-webartifactId>
dependency>
server:
port: 3344
spring:
application:
name: spring-cloud-config-server
# 连接远程仓库
cloud:
config:
server:
git:
uri: https://gitee.com/Lin9207/springcloud-config.git
@SpringBootApplication
@EnableConfigServer
public class Config_Server_3344 {
public static void main(String[] args) {
SpringApplication.run(Config_Server_3344.class, args);
}
}
三、客户端连接服务端远程访问
spring:
profiles:
active: dev
---
server:
port: 8201
# spring配置
spring:
profiles: dev
application:
name: springcloud-provider-dept
# Eureka配置,服务注册到哪里
eureka:
client:
service-url:
defaultZone: http://localhost:7001/eureka/
---
server:
port: 8202
# spring配置
spring:
profiles: test
application:
name: springcloud-provider-dept
# Eureka配置,服务注册到哪里
eureka:
client:
service-url:
defaultZone: http://localhost:7001/eureka/
git add .
git commit -m "描述"
git push origin master
dependency>
groupId>org.springframework.cloudgroupId>
artifactId>spring-cloud-starter-configartifactId>
version>2.1.1.RELEASEversion>
dependency>
dependency>
groupId>org.springframework.bootgroupId>
artifactId>spring-boot-starter-webartifactId>
dependency>
spring:
cloud:
config:
name: config-client
profile: dev # 环境
uri: http://localhost:3344 # 地址
label: master # 分支
spring:
application:
name: spring-config-client-3355
@RestController
public class ConfigClientController {
@Value("${spring.application.name}")
private String applicationName;
@Value("${eureka.client.service-url.defaultZone}")
private String eurekaServer;
@Value("${server.port}")
private String port;
@RequestMapping("/config")
public String getConfig() {
return "applicationName = " + applicationName + "\n,eurekaServer = " + eurekaServer + "\n,port = " + port;
}
}
@SpringBootApplication
public class ConfitClient_3355 {
public static void main(String[] args) {
SpringApplication.run(ConfitClient_3355.class, args);
}
}
文章标题:SpringCloud(5) - Config分布式配置
文章链接:http://soscw.com/index.php/essay/73522.html