先来回顾一下,在前文中我们完成了什么:
-
构建了config-server,连接到Git仓库
-
在Git上创建了一个config-repo目录,用来存储配置信息
-
构建了config-client,来获取Git中的配置信息
在本文中,我们继续来看看Spring Cloud Config的一些其他能力。
高可用问题
传统作法
通常在生产环境,Config Server与服务注册中心一样,我们也需要将其扩展为高可用的集群。在之前实现的config-server基础上来实现高可用非常简单,不需要我们为这些服务端做任何额外的配置,只需要遵守一个配置规则:将所有的Config Server都指向同一个Git仓库,这样所有的配置内容就通过统一的共享文件系统来维护,而客户端在指定Config Server位置时,只要配置Config Server外的均衡负载即可,就像如下图所示的结构:
注册为服务
虽然通过服务端负载均衡已经能够实现,但是作为架构内的配置管理,本身其实也是可以看作架构中的一个微服务。所以,另外一种方式更为简单的方法就是把config-server也注册为服务,这样所有客户端就能以服务的方式进行访问。通过这种方法,只需要启动多个指向同一Git仓库位置的config-server就能实现高可用了。
配置过程也非常简单,具体如下:
config-server配置
-
在
pom.xml
的dependencies节点中引入如下依赖,相比之前的config-server就,加入了spring-cloud-starter-eureka
,用来注册服务
1 2 3 4 5 6 7 8 9 10
|
<dependencies> <dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-config-server</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-eureka</artifactId>
</dependency>
</dependencies>
|
-
在
application.properties
中配置参数eureka.client.serviceUrl.defaultZone
以指定服务注册中心的位置,详细内容如下:
1 2 3 4 5 6 7 8 9
|
spring.application.name=config-server server.port=7001 # 配置服务注册中心 eureka.client.serviceUrl.defaultZone=http://localhost:1111/eureka/ # git仓库配置 spring.cloud.config.server.git.uri=http://git.oschina.net/didispace/SpringCloud-Learning/ spring.cloud.config.server.git.searchPaths=Chapter1-1-8/config-repo spring.cloud.config.server.git.username=username spring.cloud.config.server.git.password=password
|
-
在应用主类中,新增
@EnableDiscoveryClient
注解,用来将config-server注册到上面配置的服务注册中心上去。
1 2 3 4 5 6 7 8 9 10
|
@EnableDiscoveryClient @EnableConfigServer @SpringBootApplication
public class Application { public static void main(String[] args) { new SpringApplicationBuilder(Application.class).web(true).run(args); } }
|
-
启动该应用,并访问
http://localhost:1111/
,可以在Eureka
Server的信息面板中看到config-server已经被注册了。
config-client配置
-
同config-server一样,在
pom.xml
的dependencies节点中新增spring-cloud-starter-eureka
依赖,用来注册服务:
1 2 3 4 5 6 7 8 9 10 11 12 13 14
|
<dependencies> <dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-config</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-eureka</artifactId>
</dependency>
</dependencies>
|
-
在
bootstrap.properties
中,按如下配置:
1 2 3 4 5 6 7 8
|
spring.application.name=didispace server.port=7002 eureka.client.serviceUrl.defaultZone=http://localhost:1111/eureka/ spring.cloud.config.discovery.enabled=true spring.cloud.config.discovery.serviceId=config-server spring.cloud.config.profile=dev
|
其中,通过eureka.client.serviceUrl.defaultZone
参数指定服务注册中心,用于服务的注册与发现,再将spring.cloud.config.discovery.enabled
参数设置为true,开启通过服务来访问Config
Server的功能,最后利用spring.cloud.config.discovery.serviceId
参数来指定Config
Server注册的服务名。这里的spring.application.name
和spring.cloud.config.profile
如之前通过URI的方式访问时候一样,用来定位Git中的资源。
-
在应用主类中,增加
@EnableDiscoveryClient
注解,用来发现config-server服务,利用其来加载应用配置
1 2 3 4 5 6 7 8 9
|
@EnableDiscoveryClient @SpringBootApplication
public class Application { public static void main(String[] args) { new SpringApplicationBuilder(Application.class).web(true).run(args); } }
|
-
沿用之前我们创建的Controller来加载Git中的配置信息
1 2 3 4 5 6 7 8 9 10 11 12 13
|
@RefreshScope @RestController
public class TestController { @Value("${from}") private String from; @RequestMapping("/from") public String from() { return this.from; } }
|
-
完成了上述配置之后,我们启动该客户端应用。若启动成功,访问
http://localhost:1111/
,可以在Eureka
Server的信息面板中看到该应用已经被注册成功了。
-
访问客户端应用提供的服务:
http://localhost:7002/from
,此时,我们会返回在Git仓库中didispace-dev.properties
文件配置的from属性内容:”git-dev-1.0”。
配置刷新
有时候,我们需要对配置内容做一些实时更新的场景,那么Spring Cloud Config是否可以实现呢?答案显然是可以的。下面,我们看看如何进行改造来实现配置内容的实时更新。
在改造程序之前,我们先将config-server和config-client都启动起来,并访问客户端提供的REST APIhttp://localhost:7002/from
来获取配置信息,可以获得返回内容为:git-dev-1.0
。接着,我们可以尝试使用Git工具修改当前配置的内容,比如,将config-repo/didispace-dev.properties
中的from的值从from=git-dev-1.0
修改为from=git-dev-2.0
,再访问http://localhost:7002/from
,可以看到其返回内容还是git-dev-1.0
。
下面,我们将在config-client端增加一些内容和操作以实现配置的刷新:
-
在config-clinet的
pom.xml
中新增spring-boot-starter-actuator
监控模块,其中包含了/refresh
刷新API。
1 2 3 4
|
<dependency> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
|
-
重新启动config-clinet,访问一次
http://localhost:7002/from
,可以看到当前的配置值
-
修改Git仓库
config-repo/didispace-dev.properties
文件中from
的值
-
再次访问一次
http://localhost:7002/from
,可以看到配置值没有改变
-
通过POST请求发送到
http://localhost:7002/refresh
,我们可以看到返回内容如下,代表from
参数的配置内容被更新了
-
再次访问一次
http://localhost:7002/from
,可以看到配置值已经是更新后的值了
通过上面的介绍,大家不难想到,该功能还可以同Git仓库的Web Hook功能进行关联,当有Git提交变化时,就给对应的配置主机发送/refresh
请求来实现配置信息的实时更新。但是,当我们的系统发展壮大之后,维护这样的刷新清单也将成为一个非常大的负担,而且很容易犯错,那么有什么办法可以解决这个复杂度呢?后续我们将继续介绍如何通过Spring
Cloud Bus来实现以消息总线的方式进行通知配置信息的变化,完成集群上的自动化更新。
本文完整示例:
分享到:
相关推荐
它利用Spring Boot的开发便利性巧妙地简化了分布式系统基础设施的开发,如服务发现注册、配置中心、消息总线、负载均衡、断路器、数据监控等,都可以用Spring Boot的开发风格做到一键启动和部署。Spring并没有重复...
蚂蚁课堂-第四期-基于SpringCloud构建微服务电商项目 (无密) |____035-自动化运维-基于Docker+Jenkins实现自动化部署.rar |____034-秒杀系统设计-基于责任链设计模式与网关实现限流.rar |____033-秒杀系统设计-基于...
Spring Cloud构建微服务架构是现代企业级应用开发的热门选择,尤其在Java生态系统中,它利用Spring Boot的便利性,简化了云应用的构建过程。Spring Cloud作为一个集合体,涵盖了多个子项目,如Config用于配置管理,...
在使用Spring Cloud构建微服务时,可以发现如下几个核心组件:配置管理、服务发现、断路器和分布式会话。配置管理遵循了十二因素应用原则中的配置管理部分,服务发现则是微服务架构中的关键组件,它允许服务间相互...
本资料旨在提供最全面的Spring Cloud构建微服务架构的知识,帮助开发者深入理解和实践这一强大的框架。 1. **Spring Boot基础** 在开始Spring Cloud之前,了解Spring Boot的基本概念和使用是必要的。Spring Boot...
本文将深入探讨标题" Ideal版SpringCloud框架参考---分布式微服务架构参考"所涵盖的关键知识点,并结合描述中的组件进行详细解析。 首先,Eureka是Spring Cloud中的服务注册与发现组件。它允许微服务实例向中心...
标题提到的"目前倾力于平台架构的升级,原计划使用springboot+springcloud构建微服务架构",这表明了一个正在或即将进行的项目升级,其核心是将原有的单体架构转变为微服务架构,以提高系统的可扩展性、灵活性和可靠...
Spring Cloud是一套基于Spring Boot的微服务开发工具集,它提供了在分布式系统中常见的模式的工具,如配置管理、服务发现、断路器、智能路由、微代理、控制总线、一次性令牌、全局锁、领导选举和分布式会话等。...
基于Spring Cloud的微服务架构实践指南 项目概述 本项目是一个基于Spring Cloud的... 《Spring Cloud构建微服务架构》系列博文 Dalston版 [服务注册与发现(Eureka、Consul)](http:blog.didispace.comsprin
Spring Cloud是一系列框架的集合,它为开发者在分布式系统(如配置管理、服务发现、断路器、智能路由、微代理、控制总线、一次性令牌、全局锁、领导选举、分布式会话、集群状态)操作中提供了简单易用的开发工具。...
使用Spring Cloud构建微服务 Spring Cloud是一个相对比较新的微服务框架,2016年才推出...使用Spring Cloud构建微服务可以快速的构建复杂的分布式系统,并且提供了多种组件和工具来帮助开发者快速的构建微服务架构。
《Spring Cloud实战》一书深入探讨了Spring Cloud这一强大的微服务框架,它是当前软件开发领域中最受欢迎的构建微服务架构的工具。Spring Cloud基于Spring Boot的便利性,为开发者提供了全面的微服务开发支持,包括...
在现代软件开发中,Spring Boot 和 Spring Cloud 的组合已经成为构建微服务架构的首选方案。本文将深入探讨这两个框架的集成应用,以及它们如何帮助开发者实现高效、可扩展的分布式系统。 Spring Boot 是一个基于 ...
SpringCloud是基于Spring Boot的微服务工具集,它为开发者提供了在分布式系统(配置管理、服务发现、断路器、智能路由、微代理、控制总线、一次性令牌、全局锁、领导选举、分布式会话、集群状态等)快速构建一些常见...
通过以上介绍,我们可以看出Spring Cloud为构建微服务架构提供了丰富的工具和组件,它简化了开发过程,同时也带来了复杂性的挑战。开发者需要理解每个组件的工作原理,并根据实际需求进行选型和配置,以实现高效、...
其次,Spring Cloud作为微服务开发的利器,提供了一套用于构建微服务的工具集。它基于Spring Boot进行了扩展,使得在分布式系统(如配置管理、服务发现、断路器、智能路由、微代理、控制总线、一次性令牌、全局锁、...
Spring Cloud Alibaba 是一个由阿里巴巴维护的开源项目,它致力于为开发者提供一套完整的分布式服务解决方案,以便于构建微服务架构。这个项目集成了阿里巴巴集团内部广泛使用的中间件技术,并将其开放出来,让全球...
本项目是一个基于Spring Cloud框架的微服务架构项目,涵盖了服务注册与发现、配置中心、服务调用、负载均衡、断路器、分布式事务等多个微服务核心功能。项目通过Spring Cloud的各种组件,如Eureka、Feign、Hystrix、...
总结来说,构建基于SpringCloud分布式微服务和微信小程序的短视频社交App,需要深入了解微服务架构原理,熟练掌握SpringCloud组件的使用,同时熟悉微信小程序的开发流程和API。通过对这些技术的综合运用,我们能够...