本文发表于 2923 天前,其中的信息可能已经事过境迁
Ai摘要
加载中...|
教程:http://blog.csdn.net/forezp/article/details/70037513
服务实例多的时候,可以将配置中心做成微服务,集群部署
一、创建 配置中心 Eureka 注册中心模块
- 使用 IDEA 的 Spring Initializr 模块。选择 Cloud Discovery 下的 Eureka Server、Web 下的 Web共2个依赖。
- 在Application 类加上 @EnableEurekaServer 注解。
- 在配置文件中添加配置,指定应用信息。
配置文件:
yaml
server:
port: 8700
eureka:
instance:
hostname: localhost
client:
register-with-eureka: false
fetch-registry: false
service-url:
defaultZone: http://${eureka.instance.hostname}:${server.port}/eureka/
二、改造 Config Server 模块
- 如果没有,修改 learn-sc-config-server 的 pom.xml 添加 spring-cloud-starter-eureka 依赖(第六节创建的时候应该已经添加了)。
- 在Application 类加上 @EnableEurekaClient注解
- 修改 learn-sc-config-server的 application.yaml ,添加注册中心地址。
yaml
server:
port: 8600
spring:
application:
name: learn-sc-config-server
eureka:
client:
service-url:
defaultZone: http://localhost:8700/eureka/
- 重启 learn-sc-config-server 模块。
三、改造 Config Client 模块
- 修改 learn-sc-config-client 的 pom.xml 添加 spring-cloud-starter-eureka 依赖
- 修改learn-sc-config-client 的 bootstrap.yaml 文件为:
yaml
spring:
application:
name: learn-sc-config-client
cloud:
config:
label: master
profile: dev
discovery:
enabled: true
service-id: learn-sc-config-server
eureka:
client:
service-url:
defaultZone: http://localhost:8700/eureka/
- 启动 learn-sc-server-config 注册中心
- 启动 learn-sc-config-server 模块并等待一小会儿
- 启动 learn-sc-config-client 模块
- 访问
http://localhost:8600/foo
,页面显示:foo version 1 - 访问
http://localhost:8600/hello
,页面显示:hello world
五、代码
Github 地址:https://github.com/nianqinianyi/demo-spring-cloud
对应分支:https://github.com/nianqinianyi/demo-spring-cloud/tree/lsc07
【Spring Cloud学习笔记】07:高可用的分布式配置中心(Spring Cloud Config)https://blog.sixlab.cn/posts/2017/0630/spring-cloud-07
赞赏博主
评论 隐私政策