时间:2021-05-19
前言
在分布式系统中,由于服务数量巨多,为了方便服务配置文件统一管理,实时更新,所以需要分布式配置中心组件:spring-cloud-config ,它支持配置服务放在配置服务的内存中(即本地),也支持放在远程Git仓库中。
本节主要演示怎么用Git仓库作为配置源。
开源地址:https://github.com/bigbeef
创建配置项目
在github中创建一个项目,专门用来保存我们所有项目的配置文件,项目是我的项目结构
配置项目地址:https://github.com/bigbeef/cppba-config
eureka-server.properties
eureka.client.register-with-eureka=falseeureka.client.fetch-registry=falsespring.application.name=eureka-serverserver.port=18761eureka.instance.hostname=peer1eureka.client.serviceUrl.defaultZone=http://peer1:18761/eureka/创建spring-cloud-config-server项目
项目结构如图:
pom.xml核心代码
<dependencies> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-config-server</artifactId> </dependency></dependencies>SpringCloudConfigServerApplication.java
package com.cppba;import org.springframework.boot.SpringApplication;import org.springframework.boot.autoconfigure.SpringBootApplication;import org.springframework.cloud.config.server.EnableConfigServer;@SpringBootApplication@EnableConfigServerpublic class SpringCloudConfigServerApplication { public static void main(String[] args) { SpringApplication.run(SpringCloudConfigServerApplication.class, args); }}application.properties
这个根据自己实际的git项目修改配置
server.port=8888spring.application.name=config-serverspring.cloud.config.server.git.uri=https://github.com/bigbeef/cppba-configspring.cloud.config.label=master# spring.cloud.config.server.git.username=# spring.cloud.config.server.git.password=spring.cloud.config.server.git.searchPaths=\ cppba-spring-cloud/*,\ cppba-spring-cloud/eureka-client/*spring.cloud.config.server.git.uri:配置git仓库地址
spring.cloud.config.server.git.searchPaths:配置仓库路径,以逗号隔开
spring.cloud.config.label:配置仓库的分支
spring.cloud.config.server.git.username:访问git仓库的用户名
spring.cloud.config.server.git.password:访问git仓库的用户密码
启动项目
访问地址:http://127.0.0.1:8888
http请求地址和资源文件映射如下:
/{application}/{profile}[/{label}]
/{application}-{profile}.yml
/{label}/{application}-{profile}.yml
/{application}-{profile}.properties
/{label}/{application}-{profile}.properties
根据我们自己的配置,我们可以这样访问:http://127.0.0.1:8888/eureka-server/default/master
application -> eureka-server (应用名)
profile -> default (启用的配置,通常是后缀,下面解释)
label -> master (分支)
访问到的结果就是:
profile比较重要,可以理解成读取哪些配置文件,假如我不止一个配置文件,可能会有:
eureka-server.properties(这个是通用配置文件,默认都会加载),
eureka-server-mysql.properties,
eureka-server-oracle.properties,
eureka-server-jpa.properties,
eureka-server-mysql.properties......
我们可能会选择性的加载其中的部分properties配置文件,那我们可以这样写:http://127.0.0.1:8888/eureka-server/default,mysql,jpa/master
到此,我们的spring-cloud-config-server就简单搭起来,后面的章节我会教大家怎么在项目中读取配置
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
spring-cloud-config配置中心实现SpringCloudConfig用于为分布式系统中的基础设施和微服务应用提供集中化的外部配置支持,分为ser
问题描述我们公司的项目是基于SpringCloud开发的微服务,用到了Spring-Cloud-Config作为微服务统一的配置中心,可以将散落在各个服务的配置
1.官方文档https://cloud.spring.io/spring-cloud-static/spring-cloud-openfeign/2.2.2.R
前言:spring-cloud为基础的微服务架构,所有的微服务都需要注册到注册中心,如果这个注册中心阻塞或者崩了,那么整个系统都无法继续正常提供服务,所以,这里
文档地址https://github.com/alibaba/spring-cloud-alibaba/blob/master/spring-cloud-ali