摘要:微服务连接配置中心来实现外部配置的读取。引入依赖配置中心客户端的依赖。增加启动类添加配置在中添加如下配置,必须是,中不行。配置文件参考如下配置读取配置使用就能读取配置中心的配置,当然也可以通过其他方式获取中的配置,参考之前系列文章。
微服务连接配置中心来实现外部配置的读取。
引入依赖org.springframework.cloud spring-cloud-starter-eureka org.springframework.cloud spring-cloud-starter-config org.springframework.boot spring-boot-starter-aop org.springframework.retry spring-retry
spring-cloud-starter-config:配置中心客户端的依赖。
spring-boot-starter-aop,spring-retry:这两个是连接配置中心快速失败和重试需要用到的依赖。
增加启动类@EnableDiscoveryClient @SpringBootApplication public class ServiceApplication { public static void main(String[] args) { SpringApplication.run(ServiceApplication.class, args); } }添加配置
在bootstrap.yml中添加如下配置,必须是bootstrap,application中不行。
spring: application: name: config-client cloud: config: #username: #password: name: ${git.application} profile: ${git.profile} label: ${git.label} fail-fast: true retry: initial-interval: 2000 max-attempts: 5 discovery: enabled: true service-id: config-center eureka: client: serviceUrl: defaultZone: ${register-center.urls}
可以看出配置比较简单,下面也不再详述。
application.yml配置文件参考如下:
spring: profiles: active: config-client1 eureka: instance: prefer-ip-address: true instance-id: ${spring.cloud.client.ipAddress}:${server.port} lease-expiration-duration-in-seconds: ${lease-expiration-duration-in-seconds} lease-renewal-interval-in-seconds: ${lease-renewal-interval-in-seconds} --- spring: profiles: config-client1 server: port: ${config-client1.server.port} --- spring: profiles: config-client2 server: port: ${config-client2.server.port}Maven filter配置
... #git git.application=application git.profile=dev git.label=master ...读取配置
@RestController public class TestController { @Value("${username}") private String username; ...
使用Value就能读取配置中心的配置,当然也可以通过其他方式获取SpringCloud中的配置,参考之前SpringBoot系列文章。
启动服务通过指定Profile启动两台微服务,它们可以读取配置中心的内容。
spring-boot:run -Drun.profiles=config-client1 -P dev spring-boot:run -Drun.profiles=config-client2 -P dev
推荐:Spring Boot & Cloud 最强技术教程
扫描关注我们的微信公众号,干货每天更新。
文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。
转载请注明本文地址:https://www.ucloud.cn/yun/71282.html
摘要:在我们的文档中,我们使用来表明就选举和事务的顺序达成一致。提供成员关系,故障检测和事件广播。这是一个允许请求的请求响应机制。这包括服务发现,还包括丰富的运行状况检查,锁定,键值,多数据中心联合,事件系统和。 转载请标明出处: http://blog.csdn.net/forezp/a...本文出自方志朋的博客 什么是Consul Consul是HashiCorp公司推出的开源软件,使...
摘要:从配置获取的配置默认是明文的,有些像数据源这样的配置需要加密的话,需要对配置中心进行加密处理。添加加密配置中心配置文件中加入加密密钥。 从配置获取的配置默认是明文的,有些像数据源这样的配置需要加密的话,需要对配置中心进行加密处理。 下面使用对称性加密来加密配置,需要配置一个密钥,当然也可以使用RSA非对称性加密,但对称加密比较方便也够用了,这里就以对称加密来配置即可。 1、安装JCE ...
摘要:因为默认开启了所有攻击防御,需要禁用的防御。版本变化有点大,本次已成功升级了基础依赖,及注册中心配置中心。其他像代替了及其他组件再慢慢升级,的快速发展令升级变得非常蛋疼,本文记录了升级过程中踩过的所有的坑。。。 Spring Boot 2.x 已经发布了很久,现在 Spring Cloud 也发布了 基于 Spring Boot 2.x 的 Finchley 版本,现在一起为项目做一次...
摘要:程序的入口类打开网址访问,网页显示这就说明,从获取了的属性,而是从仓库读取的如图本文源码下载四参考资料优秀文章推荐史上最简单的教程终章史上最简单的教程第一篇服务的注册与发现史上最简单的教程第七篇高可用的分布式配置中心 转载请标明出处: http://blog.csdn.net/forezp/a...本文出自方志朋的博客在上一篇文章讲述zuul的时候,已经提到过,使用配置服务来保存各个服...
阅读 2726·2019-08-30 15:53
阅读 463·2019-08-29 17:22
阅读 941·2019-08-29 13:10
阅读 2251·2019-08-26 13:45
阅读 2723·2019-08-26 10:46
阅读 3174·2019-08-26 10:45
阅读 2473·2019-08-26 10:14
阅读 430·2019-08-23 18:23