1,配置中心可以用zookeeper来实现,也可以用apllo 来实现,springcloud 也自带了配置中心config

Apollo 实现分布式配置中心

zookeeper:实现分布式配置中心,主要是通过持久节点存储配置信息加上事件通知

Apollo:实现分布式配置中心,主要是通过mysql 数据库存储配置信息,通过有图形界面可以管理配置文件信息

srpingcloud config: 实现分布式配置中心,主要是通过版本控制器(git/svn)存储配置文件信息,没有后台

2,搭建springcloud-config 分布式配置中心

1,搭建码云(git),开源的git 服务器,创建账号,创建仓库,创建文件

https://gitee.com/aiyuesheng/springcloud-config/blob/master/config/config-client-dev.properties

这个放在git 上的配置文件信息,有参数age=10333

配置文件名:config-client-dev.properties

配置文件名称规范:服务名-环境.properteis   例如开发环境是:config-client-dev.properties,生产环境:config-client-prd.properties

3,  搭建eureka 注册中心,这个之前已经写过,需要将springcloud-config 以及 配置中心的客户端注册上去

最后就是以下三个服务都起来,然后springcloud-config-client 通过springcloud-server 读取git 上的配置文件

4,搭建springcloud-config(配置中心)

maven依赖:

<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: springcloud-config(配置中心) 这个服务注册到eureka 上的别名:config-server, git环境地址,以及文件夹搜索配置文件信息都有

###服务注册到eureka地址
eureka:
client:
service-url:
defaultZone: http://localhost:8100/eureka
spring:
application:
####注册中心应用名称
name: config-server
cloud:
config:
server:
git:
###git环境地址 仓库
uri: https://gitee.com/aiyuesheng/springcloud-config.git
####搜索目录
search-paths:
- config
####读取分支
label: master
####端口号
server:
port: 8888

启动类:

@EnableEurekaClient
@EnableConfigServer
@SpringBootApplication
public class ConfigApp {
public static void main(String[] args) {
SpringApplication.run(ConfigApp.class, args);
}
}

5,搭建springcloud-client 端,也就是正常的服务,需要从配置中心上面读取配置文件信息

maven:

<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>
<!-- actuator监控中心 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</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>

配置文件信息:name:应用名称,如果git 上没有这个应用开头的名字,会找不到,profile:dev:git 上配置文件的环境名,service-id:config-server, 是配置中心服务器注册到eureka 上的别名

spring:
application:
####注册中心应用名称
name: config-client
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: 8882 #配置手动实时刷新
#managementendpoints.web.exposure.include=*
management:
endpoints:
web:
exposure:
include: "*"

测试类:

@Component
@Data
@RefreshScope
public class Parameter { @Value("${age}")
private String age; }
@RestController
public class IndexService { @Autowired
private Parameter parameter; @RequestMapping("/getAge")
private String getAge() {
System.out.println(parameter.getAge());
return parameter.getAge();
} }

启动类:

@SpringBootApplication
@EnableEurekaClient
public class ConfigClientApp { public static void main(String[] args) {
SpringApplication.run(ConfigClientApp.class, args);
} }

测试完,可以读取数据

5,刷新数据----手动刷新

如果git 上配置文件信息修改了,本地缓存的配置文件信息是不会立即刷新的。在上面的例子中,我将读取的参数、,放入到了一个单独的Parameter 中,加上了注解@RefreshScope,同时,需要客户端需要加上actuator 监控中心

        <!-- actuator监控中心 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>

同时,配置文件增加吗,每个接口都实时监控:

#配置手动实时刷新
#managementendpoints.web.exposure.include=*
management:
endpoints:
web:
exposure:
include: "*"

每次修改完毕,需要手动发送post 请求,我是在post man 上发送

http://127.0.0.1:8882/actuator/refresh

如果有更新,会有提示,没有,则返回【】

再次刷新,配置文件信息,就刷新了

本来,我是将@RefreshScope 放入到了控制层的类上,但是就是读取为null ,很坑。。。。。。

实时刷新采用SpringCloud Bus消息总线,可以实时刷新,但是影响性能。。。

最新文章

  1. mac 远程连接服务器
  2. Android 3D滑动菜单完全解析,实现推拉门式的立体特效
  3. WPF 增加合计一栏
  4. Hibernate 具体代码
  5. jQuery学习小结2——动画
  6. 【C语言学习】-01 C基础
  7. 使用Genymotion作Android开发模拟器:安装Genymotion、部署Genymotion Vitrue Device、安装Genymotion eclipse插件
  8. [Cocos2d-x]代码段记录
  9. knockoutJS 快速上手
  10. KMP算法之查找模式串在源串中出现的次数
  11. Android学习记录:获取联系人
  12. Java-String.intern的深入研究
  13. 腾讯北京SNG一面
  14. React Router 4.x 开发,这些雷区我们都帮你踩过了
  15. 使用埃拉托色尼筛选法(the Sieve of Eratosthenes)在一定范围内求素数及反素数(Emirp)
  16. 17/11/24 05:08:44 WARN util.NativeCodeLoader: Unable to load native-hadoop library for your platform... using builtin-java classes where applicable
  17. 一、Redis数据备份与恢复
  18. php定时回调接口
  19. win2008R2 bitnami 安装 wamp
  20. python设计模式之装饰器详解(三)

热门文章

  1. shell编程1:变量的使用与例子
  2. 小白学 Python 数据分析(13):Pandas (十二)数据表拼接
  3. SQL语句中in 与 exists的区别
  4. checkbox,radio自定义美化表单
  5. 响应式导航菜单(css+js)
  6. Java多态实现的机制
  7. Everything-快速找到你的文件,电脑前的你值得拥有
  8. PYTHON程序设计实验
  9. Anroid关于fragment控件设置长按事件无法弹出Popupwindows控件问题解决记录
  10. 将root用户权限赋予普通用户