赞
踩
一般情况下,我们开发的程序都会把配置文件放到Resources文件夹下供程序读取,虽然这种方式用起来简单方便,开发的应用程序越来越多,维护起来难度肯能就会越来越大。相同的配置要改好几个应用,有时还可能会改不全或者直接就改错了。所以我们可以使用Springcloud提供的Config中心来集中管理配置文件,有修改或者变动的时候,直接改配置中心管理的文件就可以了。
SpringCloud Config Server可以拉取多种数据源,比如git、svn、本地等等。
服务端依赖spring-cloud-config-server
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-config-server</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
</dependency>
在服务端暂时不用编写任务业务代码,只需要在启动类上引入注解,就可以让配置服务端拉取到文件
@SpringBootApplication
@EnableConfigServer
@EnableEurekaClient
public class ConfigServerDemoApplication {
public static void main(String[] args) {
SpringApplication.run(ConfigServerDemoApplication.class, args);
}
}
配置文件名application.yml
server: port: 8888 spring: profiles: active: native application: name: springcloud-configserver cloud: config: server: native: searchLocations: file:///D:\\development\\files\\config-repo eureka: instance: instanceId: ${spring.application.name}:${spring.cloud.client.hostname}:${server.port} client: serviceUrl: defaultZone: http://localhost:12345/eureka/
这里边比较重要的一点就是active的值是native
,searchLocations的值以file:///
开头的路径地址。
config-repo
是文件夹名称,注意这个文件夹放的文件名是springcloud-configclient-dev.yml
,这个文件名跟客户端配置的name和active有关。
为啥要在这里加上注册中心呢,因为要把Config Server注册到Eureka,Config客户端才能够从Eureka中根据服务名
读取到配置(客户端处会用到)
客户端依赖spring-cloud-starter-config
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-config</artifactId>
</dependency>
@SpringBootApplication
@EnableEurekaClient
@EnableDiscoveryClient
public class ConfigClientDemoApplication {
public static void main(String[] args) {
SpringApplication.run(ConfigClientDemoApplication.class, args);
}
}
增加注解EnableDiscoveryClient
是为了能够发现Eureka注册中心的服务,去掉了好像就好使了…
配置文件名为bootstrap.yml
spring: application: name: springcloud-configclient profiles: active: dev cloud: config: discovery: enabled: true serviceId: SPRINGCLOUD-CONFIGSERVER eureka: instance: instanceId: ${spring.application.name}:${spring.cloud.client.hostname}:${server.port} client: serviceUrl: defaultZone: http://localhost:12345/eureka/
启用discovery的功能,让Config客户端根据服务名去拉取配置文件。
serviceId:是Config Server的服务名称。
git还没试,先等等…
虽然现在有非常强大的Nacos或者其他的什么工具,但有时候用Spring Cloud的配置中心也没啥毛病啊,是不是~
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。