标签:本地配置 部分 表示 技术 整理 服务 应用 figure oca
当一个系统中的配置文件发生改变的时候,我们需要重新启动该服务,才能使得新的配置文件生效,spring cloud config可以实现微服务中的所有系统的配置文件的统一管理,而且还可以实现当配置文件发生变化的时候,系统会自动更新获取新的配置。
Spring Cloud Config为分布式系统外部化配置提供了服务器端和客户端的支持,它包括Config Server和Config Client两部分。Config Server是一个可横向扩展、集中式的配置服务器,它用于集中管理应用程序各个环境下的配置,默认使用Git存储配置内容(也可使用Subversion、本地文件系统或Vault存储配置),因此可以方便的实现对配置的版本控制与内容审计。Config Client 是Config Server的客户端,用于操作存储在Config Server中的配置属性。
新增git仓库配置中心,地址为:https://github.com/kongliuyi/config.git,在仓库中新增加如下配置文件:
以上端点都可以映射到{application}-{profile}.properties这个配置文件,{application}表示微服务的名称,{label}对应Git仓库的分支,默认是 master
其中config-client-dev.properties文件信息如下:
<!--自省和监控的集成功能,这里的作用是为配置信息手动刷新做监控--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> </dependency> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-config-server</artifactId> </dependency>
#端口号 server: port: 7010 ###服务注册到eureka地址 eureka: client: service-url: defaultZone: http://eureka7001:7001/eureka spring: application: #注册中心应用名称 name: config-server cloud: config: server: git: #git环境地址 uri: https://github.com/kongliuyi/config.git ##搜索目录 search-paths: /
package net.riking.springcloud.configserver; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.cloud.client.discovery.EnableDiscoveryClient; import org.springframework.cloud.config.server.EnableConfigServer; @SpringBootApplication @EnableDiscoveryClient @EnableConfigServer //开启配置中心服务端 public class ConfigServerApplication { public static void main(String[] args) { SpringApplication.run(ConfigServerApplication.class, args); } }
启动工程后,访问:http://localhost:7010/config-client-dev.properties,可以看到如下页面:
<dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-config-client</artifactId> </dependency>
除了默认的application.yml配置文件,还需增加一个bootstrap.yml的配置文件,内容如下:
#服务启动端口号 server: port: 9010 #服务名称(服务注册到eureka名称) spring: application: name: config-client #对应config-server所获取的配置文件的{application} cloud: config: #读取后缀 对应config-server所获取的配置文件的{profile} profile: dev label: master #读取git仓库分支 对应config-server所获取的配置文件的{label} #读取config-server注册地址 discovery: service-id: config-server enabled: true #客户端注册进eureka服务列表内 eureka: client: service-url: defaultZone: http://eureka7001:7001/eureka
注:spring cloud有一个“引导上下文"的概念,这是主应用程序的父上下文。引导上下文负责从配置服务器加载配置属性,以及解密外部配置文件中的属性。和主应用程序加载
application.*(yml或 properties)中的属性不同,引导上下文加载(bootstrap.*)中的属性。配置在 bootstrap.*中的属性有更高的优先级,因此默认情况下它们不能被本地配置覆盖。
package net.riking.springcloud.configclient.controller; import org.springframework.beans.factory.annotation.Value; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; @RestController @RequestMapping("/config/client") public class ConfigClientController { @Value("${name}") private String name; @GetMapping public String name() { return name ; } }
package net.riking.springcloud.configclient; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.cloud.netflix.eureka.EnableEurekaClient; @SpringBootApplication @EnableEurekaClient ///开启对EurekaClient的支持,即:作为Eureka客户端,高版本可省略 public class ConfigClientApplication { public static void main(String[] args) { SpringApplication.run(ConfigClientApplication.class, args); } }
5.验证
启动工程后,访问:http://localhost:9010//config/client,可以看到如下页面:
以后有时间整理
标签:本地配置 部分 表示 技术 整理 服务 应用 figure oca
原文地址:https://www.cnblogs.com/kongliuyi/p/11417081.html