前言
上一章节,简单介绍了分布式配置中心Spring Cloud Config的使用。同时,我们也遗漏了一些问题,比如如何配置实时生效,当服务端地址变更或者集群部署时,如何指定服务端地址?回想,在服务注册章节,服务提供者和服务消费者,同时往注册中心进行注册和获取服务地址,而本身注册中心又支持高可用配置。所以,对于配置中心,我们也可以将Server端和Client端往注册中心进行注册,借此实现配置中心的服务化,无需指定具体的ip地址,直接根据服务名称进行调用。
对于负载较高的服务来说,往往对应着由多台服务器组成的集群。在请求到来时,为了将请求均衡的分配到后端服务器,负载均衡程序将从服务对应的地址列表中,通过响应的负载均衡算法和规则(rount_robin、random、weight_random),选取一台服务器进行访问,这个过程称为服务的负载均衡。
前言
关于高可用
将配置中心服务化,本身是为了实现高可用。而实现高可用的手段是很多的,最常用的就是负载均衡。客户端不直连服务端,而是访问负载均衡服务,由负载均衡来动态选择需要访问的服务端。只是 Spring Cloud Config天然的就能进行服务化配置,所以,实际中可以根据实际的业务需求来进行合理化抉择的。
其次,对于使用了git或者svn作为存储方式时,本身配置仓库的高可用也是一个需要考虑的事项。本身如github或者码云这些第三方git仓库而言,已经实现了高可用了。但一般上部署的微服务都是内网服务,所以一般上是使用如gitlab开源的git仓库管理系统进行自建,此时就需要考虑本身仓库的高可用了。
注意:本身教程为了不混淆各知识点,所以都是独立项目进行实例,而不是在原工程上进行修改。 本章节教程采用了多模块工程进行构建实例。父类项目名为:spring-cloud-config-ha。同时创建服务化的配置文件:my-config-client-ha-dev.properties和my-config-client-ha-test.properties
my-config-client-ha-dev.properties
config=this is dev!
my-config-client-ha-dev.properties
config=this is test!
Server端
创建子工程:spring-cloud-confg-ha-server 0.加入pom依赖。
org.springframework.cloud
spring-cloud-config-server
org.springframework.cloud
spring-cloud-starter-netflix-eureka-client
1.配置文件加入注册中心相关配置。
spring.application.name=spring-cloud-config-ha-server
server.port=15678
#配置文件git配置
spring.cloud.config.server.git.uri=https://github.com/xie19900123/spring-cloud-learning.git
# 搜索路径,即配置文件的目录,可配置多个,逗号分隔。默认为根目录。
spring.cloud.config.server.git.searchPaths=spring-cloud-config-repo
# git用户名和密码 针对私有仓库而言需要填写
spring.cloud.config.server.git.username=
spring.cloud.config.server.git.password=
#添加注册中心配置
# 注册中心地址 -此为单机模式
eureka.client.service-url.defaultZone=http://127.0.0.1:1000/eureka
# 启用ip配置 这样在注册中心列表中看见的是以ip+端口呈现的
eureka.instance.prefer-ip-address=true
# 实例名称 最后呈现地址:ip:15678
eureka.instance.instance-id=${spring.cloud.client.ip-address}:${server.port}
2.启动类加入@EnableDiscoveryClient和@EnableConfigServer,前者开启服务发现功能,后者声明一个config server。
/**
* config server 服务化
*
* @author oKong
*
*/
@SpringBootApplication
@EnableConfigServer
//注意这里也可使用@EnableEurekaClient
//但由于springcloud是灵活的,注册中心支持eureka、consul、zookeeper等
//若写了具体的注册中心注解,则当替换成其他注册中心时,又需要替换成对应的注解了。
//所以 直接使用@EnableDiscoveryClient 启动发现。
//这样在替换注册中心时,只需要替换相关依赖即可。
@EnableDiscoveryClient
@Slf4j
public class ConfigServerHaApplication {
public static void main(String[] args) throws Exception {
SpringApplication.run(ConfigServerHaApplication.class, args);
log.info("spring-cloud-config-ha-server启动!");
}
}
关于Eureka相关知识点,可以查看:《第二章:服务注册与发现(Eureka)-上》和《第三章:服务注册与发现(Eureka)-下》,这里就不加以阐述了。
3.启动应用,同时启动Eureka服务端。访问下Eureka服务端地址:http://127.0.0.1:1000/ ,可以看见服务注册成功了。
访问:http://127.0.0.1:15678/my-config-client-ha-dev.properties 可以看见配置信息了。
Client端
创建子工程:spring-cloud-confg-ha-client 0.加入pom依赖。
org.springframework.cloud
spring-cloud-starter-config
org.springframework.cloud
spring-cloud-starter-netflix-eureka-client
org.springframework.boot
spring-boot-starter-web
1.配置文件修改,bootstrap.properties添加注册中心配置。 bootstrap.properties
# 设置分支
spring.cloud.config.label=master
# 环境变量
spring.cloud.config.profile=dev
# 是否使用注册中心方式进行获取
spring.cloud.config.discovery.enabled=true
# 服务端地址
# 在不使用注册中心模式下 直接填写实际地址
#spring.cloud.config.uri=http://127.0.0.1:5678
# 注册中心应用id
spring.cloud.config.discovery.service-id=spring-cloud-config-ha-server
#添加注册中心配置
# 注册中心地址 -此为单机模式
eureka.client.service-url.defaultZone=http://127.0.0.1:1000/eureka
# 启用ip配置 这样在注册中心列表中看见的是以ip+端口呈现的
eureka.instance.prefer-ip-address=true
# 实例名称 最后呈现地址:ip:15678
eureka.instance.instance-id=${spring.cloud.client.ip-address}:${server.port}
application.properties
# 设置应用名称,需要和配置文件匹配
spring.application.name=my-config-client-ha
server.port=15666
注意:注册中心的相关配置需要放在bootstrap.properties中,这样才能利用注册中心进行服务端服务地址获取。
2.启动类,加入@EnableDiscoveryClient,开启服务发现功能。
/**
* 服务化方式调用config server
*
* @author oKong
*
*/
@SpringBootApplication
@EnableDiscoveryClient
@Slf4j
public class ConfigClientHaApplication {
public static void main(String[] args) throws Exception {
SpringApplication.run(ConfigClientHaApplication.class, args);
log.info("spring-cloud-config-ha-client启动!");
}
}
3.创建控制层,测试配置参数。
/**
* config client 简单示例
* @author oKong
*
*/
@RestController
public class DemoController {
@Value("${config}")
String config;
@GetMapping("/")
public String demo() {
return "返回的config参数值为:" + config;
}
}
4.启动应用。一般上应用能启动成功,就说明服务化已经成功了。 启动时,可以看见已经往注册中心去获取服务端地址了。
2018-10-10 23:15:15.302 INFO 26412 --- [ main] c.c.c.ConfigServicePropertySourceLocator : Fetching config from server at : http://192.168.2.102:15678/
2018-10-10 23:15:20.728 INFO 26412 --- [ main] c.c.c.ConfigServicePropertySourceLocator : Located environment: name=my-config-client-ha, profiles=[dev], label=master, version=f2645253a37db433d806914b1d04d6aba428831c, state=null
此时,我们访问:http://127.0.0.1:15666/ ,即可看见配置信息返回了。
refresh实现刷新
在默认情况下,客户端是不会自动感知配置的变化的。此时,我们可以使用/refresh端点来进行配置更新。 现在,我们改造下客户端。 0.加入端点依赖。
org.springframework.boot
spring-boot-starter-actuator
1.修改下变量使用类,加入@RefreshScope注解,标记在访问/refresh时,进行变量的更新操作。
/**
* config client 简单示例
* @author oKong
*
*/
@RestController
@RefreshScope//使用该注解的类,会在接到SpringCloud配置中心配置刷新的时候,自动将新的配置更新到该类对应的字段中。
public class DemoController {
@Value("${config}")
String config;
@GetMapping("/")
public String demo() {
return "返回的config参数值为:" + config;
}
}
重点就是注解@RefreshScope了。 2.配置文件开启端点refresh。这里需要注意,2.0之后,默认只开启了端点info、health。其他的需要通过management.endpoints.web.exposure.include进行额外配置。
#开启监控端点
management.endpoints.web.exposure.include=refresh
3.启动应用,此时,动态修改下远程仓库的参数值为:config=this is dev refresh!!!, 使用Postman使用POST访问:http://127.0.0.1:15666/actuator/refresh。
返回值即为有变动的参数值。
再次访问:http://127.0.0.1:15666/ 可以看见已经是最新的配置参数值了。
我们利用zookeeper生成的节点树,服务器提供者在启动的时候,将提供的服务名称和地址以节点的方式注册都服务器zookeeper服务器配置中心,消费者通过服务器配置中心获取需要的服务名称节点下的服务地址。因为znode有非持久节点的特性,服务器可以动态的从服务配置中心一处,并且触发消费者的watcher方法。
原文出处:okong