先看一张spring-cloud-config的架构图:
从图中可以清晰的知道spring-cloud服务从configServer中或者配置文件信息,configServer从git里面拉配置文件信息。
构建一个config client:
引入maven依赖:
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-config</artifactId>
</dependency>
yml文件内容如下:
bootstrap.yml:
server:
port: 6214
spring:
profiles:
active: dev
bootstrap-test.yml:
spring:
application:
name: business-lifePay-service-test
cloud:
config:
profile: test
fail-fast: true
retry:
initial-interval: 2000
max-attempts: 6
discovery:
enabled: true
service-id: system-config-service
allow-override: true
eureka:
instance:
prefer-ip-address: true
#表示eureka client发送心跳给server端的频率。如果在leaseExpirationDurationInSeconds后,server端没有收到client的心跳,则将摘除该instance
lease-renewal-interval-in-seconds: 5 #注册服务默认心跳时间为30秒,当一个服务器不可用,需要3个心跳才能让服务器和客户端的元数据相同。生产环境最好使用默认配置。
#表示eureka server至上一次收到client的心跳之后,等待下一次心跳的超时时间,在这个时间内若没收到下一次心跳,则将移除该instance
lease-expiration-duration-in-seconds: 10 # 续约到期时间(默认90秒)
instance-id: ${spring.cloud.client.ip-address}:${server.port}
hostname: ${spring.cloud.client.ip-address}
client:
healthcheck:
enabled: false # 开启健康检查(依赖spring-boot-starter-actuator)
service-url:
defaultZone: http://admin:admin@192.168.1.197:1001/eureka
registry-fetch-interval-seconds: 6
logging:
config: classpath:logback.xml
path: /usr/local/jxmlogs/${spring.application.name}
bootstrap-dev.yml:
spring:
application:
name: business-lifePay-service-dev
cloud:
config:
profile: dev
fail-fast: true
retry:
initial-interval: 2000
max-attempts: 6
discovery:
enabled: true
service-id: system-config-service
allow-override: true
eureka:
instance:
prefer-ip-address: true
#表示eureka client发送心跳给server端的频率。如果在leaseExpirationDurationInSeconds后,server端没有收到client的心跳,则将摘除该instance
lease-renewal-interval-in-seconds: 5 #注册服务默认心跳时间为30秒,当一个服务器不可用,需要3个心跳才能让服务器和客户端的元数据相同。生产环境最好使用默认配置。
#表示eureka server至上一次收到client的心跳之后,等待下一次心跳的超时时间,在这个时间内若没收到下一次心跳,则将移除该instance
lease-expiration-duration-in-seconds: 10 # 续约到期时间(默认90秒)
instance-id: ${spring.cloud.client.ip-address}:${server.port}
hostname: ${spring.cloud.client.ip-address}
client:
healthcheck:
enabled: false # 开启健康检查(依赖spring-boot-starter-actuator)
service-url:
defaultZone: http://admin:admin@192.168.1.197:1001/eureka
registry-fetch-interval-seconds: 6
logging:
config: classpath:logback.xml
path: /usr/local/jxmlogs/${spring.application.name}
客户端配置文件说明:
(1)bootstrap.yml
bootstrap.yml(bootstrap.properties)用来程序引导时执行,应用于更加早期配置信息读取,如可以使用来配置application.yml中使用到参数等,application.yml(application.properties);应用程序特有配置信息,可以用来配置后续各个模块中需使用的公共参数等。加载顺序:
bootstrap.yml > application.yml > application-dev(prod).yml
(2)--spring.profiles.active=test
spring boot允许你通过命名约定按照一定的格式(application-{profile}.yml)来定义多个配置文件,然后通过在application.yml通过spring.profiles.active来具体激活一个或者多个配置文件,如果没有没有指定任何profile的配置文件的话,spring boot默认会启动application-default.properties。
(3)spring-cloud-config客户端服务获取远程配置文件的位置和说明有关:
- /{application}/{profile}[/{label}]
- /{application}-{profile}.yml
- /{label}/{application}-{profile}.yml
- /{application}-{profile}.properties
- /{label}/{application}-{profile}.properties
验证分布式配置文件的读取:
git配置文件有2个,分别是
business-lifePay-service-test
my:
name: test
business-lifePay-service-dev
my:
name: dev
项目启动:激活方式是
spring: profiles: active: dev
- 服务名能匹配,profile指定test
结果:读取business-lifePay-service-dev文件内容
2. 服务名+profile能匹配
结果:读取business-lifePay-service-test文件内容
3.服务名不能匹配,不指定spring.cloud.config.profile激活文件
结果:读取business-lifePay-service-dev文件内容
4.服务名能匹配,不指定spring.cloud.config.profile激活文件
结果:读取business-lifePay-service-test文件内容
从中可以总结出:优先根据服务名进行匹配配置文件>服务名+spring.cloud.config.profile>服务名+spring.profiles.active
spring.cloud.config.label=master 一般都不使用