时间:2021-05-19
这篇文章主要介绍了spring cloud config集成过程详解,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下
Spring Cloud Config 分为
Spring boot版本2.1.8.RELEASE
服务中心使用Consu,启动Consu
1.配置中心(服务端)
easy-config
(1)添加依赖
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId></dependency><!--配置中心--><dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-config-server</artifactId></dependency><dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-consul-discovery</artifactId></dependency>(2)配置
在resources下
A. 添加 bootstrap.properties
spring.profiles.active=native本地存储配置方式
也可以使用git方式
server.port=8091spring.application.name=easy-configspring.cloud.consul.host=localhostspring.cloud.consul.port=8500spring.cloud.consul.discovery.service-name=${spring.application.name}spring.cloud.consul.discovery.instance-id=${spring.application.name}:${server.port}management.endpoints.web.exposure.include=*management.endpoint.health.show-details=alwaysspring.profiles.active=nativespring.cloud.config.server.native.search-locations=classpath:/config/B. 添加config/easy-api-dev.properties
hello-string=我是来自配置中心的
(3)修改启动类
添加注解@EnableConfigServer开启配置服务支持
package com.tydt.easy.config;import org.springframework.boot.SpringApplication;import org.springframework.boot.autoconfigure.SpringBootApplication;import org.springframework.cloud.config.server.EnableConfigServer;@EnableConfigServer@SpringBootApplicationpublic class EasyConfigApplication { public static void main(String[] args) { SpringApplication.run(EasyConfigApplication.class, args); }}启动easy-config
浏览器访问 http://localhost:8091/easy-api/dev
返回结果
{ "name": "easy-api", "profiles": [ "dev" ], "label": null, "version": null, "state": null, "propertySources": [ { "name": "classpath:/config/easy-api-dev.properties", "source": { "hello-string": "我是来自配置中心的" } } ]}说明:
配置中心的配置文件会被转化成相应的web接口
2.客户端
easy-api
(1)添加依赖
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId></dependency><dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-consul-discovery</artifactId></dependency><dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-config</artifactId></dependency>(2)配置
添加配置bootstrap.properties
通过注册中心的发现服务,去配置中心查找配置
server.port=8083spring.application.name=easy-apispring.profiles.active=devspring.cloud.consul.host=localhostspring.cloud.consul.port=8500spring.cloud.consul.discovery.health-check-path=/actuator/healthspring.cloud.consul.discovery.service-name=${spring.application.name}spring.cloud.consul.discovery.heartbeat.enabled=truemanagement.endpoints.web.exposure.include=*management.endpoint.health.show-details=alwaysspring.cloud.config.discovery.enabled=truespring.cloud.config.discovery.service-id=easy-config#设为true,如果无法连接config server,启动时会抛异常,并停止服务spring.cloud.config.fail-fast=true(3)测试方法
package com.tydt.engine.api.controller;import org.springframework.beans.factory.annotation.Value;import org.springframework.web.bind.annotation.RequestMapping;import org.springframework.web.bind.annotation.RestController;@RestControllerpublic class HelloController { @Value("${hello-string}") private String helloString; @RequestMapping("/") public String Hello(){ return "hello,easy-api,"+helloString; }}3.测试
启动easy-api
测试地址
http://localhost:8083/
返回结果
hello,easy-api,我是来自配置中心的
4.更新
修改了配置中心的配置后,如何读取到新的配置呢
(1)修改测试方法
添加注解 @RefreshScope
package com.tydt.easy.api.controller;import org.springframework.beans.factory.annotation.Value;import org.springframework.cloud.context.config.annotation.RefreshScope;import org.springframework.web.bind.annotation.RequestMapping;import org.springframework.web.bind.annotation.RestController;@RefreshScope@RestControllerpublic class HelloController { @Value("${hello-string}") private String helloString; @RequestMapping("/") public String Hello(){ return "hello,easy-api,"+helloString; }}启动easy-config
启动easy-api
测试地址
http://localhost:8083/
返回结果
hello,easy-api,我是来自配置中心的
(2)修改配置
easy-config的resources/config/easy-api-dev.properties
hello-string=我是来自配置中心的111重启easy-config
执行http://localhost:8083/actuator/refresh
输出
[ "hello-string"]http://localhost:8083/输出
hello,esay-api,我是来自配置中心的111
说明:
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
1.官方文档https://cloud.spring.io/spring-cloud-static/spring-cloud-openfeign/2.2.2.R
文档地址https://github.com/alibaba/spring-cloud-alibaba/blob/master/spring-cloud-ali
spring-cloud-config配置中心实现SpringCloudConfig用于为分布式系统中的基础设施和微服务应用提供集中化的外部配置支持,分为ser
问题描述我们公司的项目是基于SpringCloud开发的微服务,用到了Spring-Cloud-Config作为微服务统一的配置中心,可以将散落在各个服务的配置
引入依赖org.springframework.cloudspring-cloud-dependencies${spring-cloud.version}pom