<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-config-server</artifactId>
</dependency>
</dependencies>复制代码
#bootstrap.properties 加载优先于 application.properties 因此注册中心要写在bootstrap.properties中,不然没法加载git服务器配置文件
eureka.client.serviceUrl.defaultZone=http://localhost:8080/eureka/复制代码
在咱们了解spring cloud config以前,我能够想一想一个配置中心提供的核心功能应该有什么git
Spring Cloud Config能够完美的支持以上全部的需求。github
Spring Cloud Config项目是一个解决分布式系统的配置管理方案。它包含了Client和Server两个部分,server提供配置文件的存储、以接口的形式将配置文件的内容提供出去,client经过接口获取数据、并依据此数据初始化本身的应用。Spring cloud使用git或svn存放配置文件,默认状况下使用git,咱们先以git为例作一套示例。web
首先在github上面建立了一个文件夹config-repo用来存放配置文件,为了模拟生产环境,咱们建立如下两个配置文件:
spring
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-config-server</artifactId>
</dependency>
</dependencies>复制代码
只须要加入spring-cloud-config-server包引用既可。
bootstrap
server.port=8088
spring.application.name=leisure-config
# 配置git仓库地址
spring.cloud.config.server.git.uri=https://gitee.com/leisure-w/config-repo/
# 配置仓库下相对地址,能够配置多个,用,分割
#spring.cloud.config.server.git.search-paths=myconfigpath
# 配置仓库的分支
spring.cloud.config.label=master
# 访问git仓库的用户名
#spring.cloud.config.server.git.username=xxxooo
# 访问git仓库的用户密码 若是Git仓库为公开仓库,能够不填写用户名和密码,若是是私有仓库须要填写
#spring.cloud.config.server.git.password=xxxooo
# 注册地址
eureka.client.serviceUrl.defaultZone=http://localhost:8080/eureka/复制代码
Spring Cloud Config也提供本地存储配置的方式。咱们只须要设置属性spring.profiles.active=native
,Config Server会默认从应用的src/main/resource
目录下检索配置文件。也能够经过spring.cloud.config.server.native.searchLocations=file:E:/properties/
属性来指定配置文件的位置。虽然Spring Cloud Config提供了这样的功能,可是为了支持更好的管理内容和版本控制的功能,仍是推荐使用git的方式。
浏览器
启动类添加@EnableConfigServer
,激活对配置中心的支持bash
@EnableConfigServer
@SpringBootApplication
public class ConfigServerApplication {
public static void main(String[] args) {
SpringApplication.run(ConfigServerApplication.class, args);
}
}复制代码
到此server端相关配置已经完成
服务器
server段很简单不会有太多坑并发
首先咱们先要测试server端是否能够读取到github上面的配置信息,直接访问:http://localhost:8088/leisure-config/company
app
返回信息以下:
<Environment><name>leisure-config</name><profiles><profiles>company</profiles></profiles><label/><version>bb1b25ea69a966f22905783a3a509f15f4b70685</version><state/><propertySources><propertySources><name>https://gitee.com/leisure-w/config-repo/leisure-config-company.properties</name><source><leisure>hello update company!</leisure></source></propertySources></propertySources></Environment>复制代码
上述的返回的信息包含了配置文件的位置、版本、配置文件的名称以及配置文件中的具体内容,说明server端已经成功获取了git仓库的配置信息。
若是直接查看配置文件中的配置信息可访问:http://localhost:8088/leisure-config-company.properties
,返回:"hello update company!"
修改配置文件leisure-config-company.properties
中配置信息为:leisure.hello=hello company!
,再次在浏览器访问http://localhost:8088/leisure-config-company.properties
,返回:hello company!
。说明server端会自动读取最新提交的内容
仓库中的配置文件会被转换成web接口,访问能够参照如下的规则:
以leisure-config-company.properties为例子,它的application是leisure-config,profile是company。client会根据填写的参数来选择读取对应的配置。
主要展现如何在业务项目中去获取server端的配置信息
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-config</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>复制代码
须要配置两个配置文件,application.properties和bootstrap.properties
application.properties以下:
spring.application.name=spring-cloud-config-client
server.port=8002复制代码
bootstrap.properties以下:
spring.cloud.config.name=neo-config
spring.cloud.config.profile=dev
spring.cloud.config.uri=http://localhost:8001/
spring.cloud.config.label=master复制代码
特别注意:上面这些与spring-cloud相关的属性必须配置在bootstrap.properties中,config部份内容才能被正确加载。由于config的相关配置会先于application.properties,而bootstrap.properties的加载也是先于application.properties。
启动类不要添加@EnableConfigServer
,激活对配置中心的支持
@SpringBootApplication
public class ConfigClientApplication {
public static void main(String[] args) {
SpringApplication.run(ConfigClientApplication.class, args);
}
}复制代码
启动类只须要@SpringBootApplication
注解就能够
使用@Value
注解来获取server端参数的值
@RestController
class HelloController {
@Value("${neo.hello}")
private String hello;
@RequestMapping("/hello")
public String from() {
return this.hello;
}
}复制代码