赞
踩
1:当一个系统中的配置文件发生改变的时候,我们需要重新启动该服务,才能使得新的配置文件生效,spring cloud config可以实现微服务中的所有系统的配置文件的统一管理,
2:而且还可以实现当配置文件发生变化的时候,系统会自动更新获取新的配置,这点需要springcloud bus的配合
1.阿波罗,携程的分布式配置中心,有图形界面可管理配置文件信息,配置文件信息存在数据库当中
2.SpringCloud-Config 没有后台可管理分布式配置中心,配置文件存在方版本控制器,
3.使用zk实现分布式配置中心,他采用的是持久节点+事件通知
1:web管理系统系统,(后台可视化界面管理配置文件)
2:存放分布式配置文件服务器(长期存储服务器)–使用版本控制器存放配置文件信息
3.configServer缓存配置文件服务器(临时缓存存放)
4.ConfigClient读取ConfigServer的配置文件信息
项目代码
链接:https://pan.baidu.com/s/1vmwufP9mhjfPmvD_vK0vtQ
提取码:51vz
1.在github或者gitee里面创建一个项目,搭建存放持久化配置文件信息,同时创建config文件夹,并且创建文件文件内容为
perison.name = "william"
注意:文件的命名必须满足 服务名称-环境.properties.不然后面的访问会报404
2:单独创建一个config的项目
依赖
<parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.0.1.RELEASE</version> </parent> <!-- 管理依赖 --> <dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-dependencies</artifactId> <version>Finchley.M7</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <!--spring-cloud 整合 config-server --> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-config-server</artifactId> </dependency> <!-- SpringBoot整合eureka客户端 --> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId> </dependency> </dependencies> <!-- 注意: 这里必须要添加, 否者各种依赖有问题 --> <repositories> <repository> <id>spring-milestones</id> <name>Spring Milestones</name> <url>https://repo.spring.io/libs-milestone</url> <snapshots> <enabled>false</enabled> </snapshots> </repository> </repositories>
application.yml配置
###服务注册到eureka地址 eureka: client: service-url: defaultZone: http://localhost:8100/eureka # 注册到配置中心 spring: application: ####注册中心应用名称 name: config-server cloud: config: server: git: ###git环境地址 uri: https://gitee.com/itmayi/config.git # 填写你刚刚创建的git地址 ####搜索目录 search-paths: - config ## 你在你的gitee创建的一个文件夹,他里面存放的是配置文件信息.在创建仓库的时候,需自己创建 ####读取分支 label: master ####端口号 server: port: 8888
项目启动
@EnableConfigServer
@SpringBootApplication
public class ConfigServerApplication {
public static void main(String[] args) {
SpringApplication.run(ConfigServerApplication.class, args);
}
}
此时先启动Eureka在启动这个项目,通过访问 localhost:8888/test-configClient-sit.properties即可看到配置文件的内容
客户端
<parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.0.1.RELEASE</version> </parent> <!-- 管理依赖 --> <dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-dependencies</artifactId> <version>Finchley.M7</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <!-- SpringBoot整合Web组件 --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-config-client</artifactId> </dependency> <!-- SpringBoot整合eureka客户端 --> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId> </dependency> </dependencies> <!-- 注意: 这里必须要添加, 否者各种依赖有问题 --> <repositories> <repository> <id>spring-milestones</id> <name>Spring Milestones</name> <url>https://repo.spring.io/libs-milestone</url> <snapshots> <enabled>false</enabled> </snapshots> </repository> </repositories>
配置文件
spring: application: ####注册中心应用名称 name: test-configClient # 比如我们的文件名:test-configClient-sit.properties 此时要设置test-configClient cloud: config: ####读取后缀 profile: sit #比如我们的文件名:test-configClient-sit.properties 此时要设置sit ####读取config-server注册地址 discovery: service-id: config-server # 你要找的服务 enabled: true ##### eureka服务注册地址 eureka: client: service-url: defaultZone: http://localhost:8100/eureka server: port: 8882
启动类
@SpringBootApplication
@EnableEurekaClient
public class ClientApplication {
public static void main(String[] args) {
SpringApplication.run(ClientApplication.class,args);
}
}
读取配置文件类
@Data
@Component
@RefreshScope
public class Paramters {
@Value("${name}")
private String name;
}
controller 测试即可
@RestController
public class IndexController {
@Autowired
Paramters paramters;
@RequestMapping("/name")
private String name() {
return paramters.getName();
}
}
下面是一些我在看教程的时候,别人写的例子,但是在我这里一直获取的值为null,也希望大家遇到同样的问题,不要这样书写,按照我上面的写
/获取的name 一直未null
@RestController
@RefreshScope
public class IndexController {
@Value("${name}")
private String name;
@RequestMapping("/name")
private String name() {
return name;
}
}
每次更新配置的时候,根据自己调用client端的/actuator/refresh 如 我们这里的localhost:8882/actuator/refresh 进行配置文件的刷
一般推荐采用这种方式,对性能的损耗比较小
1.首先启动RabbitMQ
2.config-server
依赖
<dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-bus-parent</artifactId> <version>2.0.0.RC2</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <!-- SpringBoot整合Web组件 --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <!--spring-cloud 整合 config-server --> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-config-server</artifactId> <version>2.0.2.RELEASE</version> </dependency> <!-- SpringBoot整合eureka客户端 --> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId> <version>2.0.2.RELEASE</version> </dependency> <!--核心jar包 --> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-bus-amqp</artifactId> </dependency> <!-- actuator监控中心 --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> </dependency> </dependencies> <!-- 注意: 这里必须要添加, 否者各种依赖有问题 --> <repositories> <repository> <id>spring-milestones</id> <name>Spring Milestones</name> <url>https://repo.spring.io/libs-milestone</url> <snapshots> <enabled>false</enabled> </snapshots> </repository> </repositories>
配置文件
###服务注册到eureka地址 eureka: client: service-url: defaultZone: http://localhost:8100/eureka spring: application: ####注册中心应用名称 name: config-server cloud: config: server: git: ###git环境地址 uri: https://gitee.com/mayikt/config.git ####搜索目录 search-paths: - config ####读取分支 label: master ####端口号 server: port: 8888
启动类
@SpringBootApplication
@EnableEurekaClient
@EnableConfigServer
public class AppServerConfig {
public static void main(String[] args) {
SpringApplication.run(AppServerConfig.class, args);
}
}
3.config-client
依赖
<dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-bus-parent</artifactId> <version>2.0.0.RC2</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <!-- SpringBoot整合Web组件 --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-config-client</artifactId> <version>2.0.2.RELEASE</version> </dependency> <!-- SpringBoot整合eureka客户端 --> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId> <version>2.0.2.RELEASE</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> </dependency> <!--核心jar包 --> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-bus-amqp</artifactId> </dependency> <!-- actuator监控中心 --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> </dependency> </dependencies> <!-- 注意: 这里必须要添加, 否者各种依赖有问题 --> <repositories> <repository> <id>spring-milestones</id> <name>Spring Milestones</name> <url>https://repo.spring.io/libs-milestone</url> <snapshots> <enabled>false</enabled> </snapshots> </repository> </repositories>
配置文件
spring: application: ####注册中心应用名称 name: appConfig cloud: config: ####读取后缀 profile: dev ####读取config-server注册地址 discovery: service-id: config-server enabled: true ##### eureka服务注册地址 eureka: client: service-url: defaultZone: http://localhost:8100/eureka server: port: 8883 ###开启bus刷新 management: endpoints: web: exposure: include: bus-refresh
controller
@RestController
@RefreshScope
public class IndexController {
@Value("${userAge}")
private String userAge;
@RequestMapping("/getUserAge")
public String getUserAge() {
return userAge;
}
}
启动类
@SpringBootApplication
@EnableEurekaClient
public class AppClientConfig {
public static void main(String[] args) {
SpringApplication.run(AppClientConfig.class, args);
}
}
我们还需要需要调用localhost:8882/actuator/refresh
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。