1.前言

分布式微服务想要热更新配置文件,还需要 消息中间件 配合使用 ,一般使用 rabbitMQ 或 Kafka ,这里不解释 。

这篇随笔 只讲解 底层的 单机热更新配置文件

2.环境

spring boot : 2.1.6.RELEASE

spring cloud :  Greenwich.SR2

jdk 1.8

3.配置中心服务端 ,端口6001

目录结构

pom.xml

# 设置本机服务名称
spring.application.name=config-server-6001
# 设置本机服务端口
server.port=6001 #注册中心地址
eureka.client.serviceUrl.defaultZone=http://localhost:7001/eureka/
#
#
##本地配置文件,默认获取在resources路径下的文件
#spring.profiles.active=native
#指定本地文件路径
#spring.cloud.config.server.native.search-locations=classpath:properties/ 或者写 D:/common/ 都是文件夹路径,只获取改文件夹内的文件
#
#
#配置的Git仓库的地址
spring.cloud.config.server.git.uri=https://github.com/cen-xi/test
#分支
spring.cloud.config.label=master
#git仓库地址下的相对地址 多个用逗号","分割。
spring.cloud.config.server.git.search-paths=/blob/master/gittest.properties,/blob/master/README.md,/blob/master/gittest2.yml
#git仓库的账户
spring.cloud.config.server.git.username=
#git仓库的密码
spring.cloud.config.server.git.password=

application.properties

# 设置本机服务名称
spring.application.name=config-server-6001
# 设置本机服务端口
server.port=6001 #注册中心地址
eureka.client.serviceUrl.defaultZone=http://localhost:7001/eureka/
#
#
##本地配置文件,默认获取在resources路径下的文件
#spring.profiles.active=native
#指定本地文件路径
#spring.cloud.config.server.native.search-locations=classpath:properties/ 或者写 D:/common/ 都是文件夹路径,只获取改文件夹内的文件
#
#
#配置的Git仓库的地址
spring.cloud.config.server.git.uri=https://github.com/cen-xi/test
#分支
spring.cloud.config.label=master
#git仓库地址下的相对地址 多个用逗号","分割。
spring.cloud.config.server.git.search-paths=/blob/master/gittest.properties,/blob/master/README.md,/blob/master/gittest2.yml
#git仓库的账户
spring.cloud.config.server.git.username=cen-xi
#git仓库的密码
spring.cloud.config.server.git.password=c853396015
#http://localhost:100/master/gittest-1.properties
#http://localhost:100/master/README-1.md
#http://localhost:100/master/gittest2-1.yml
#
## spring cloud bus 刷新配置
#spring.rabbitmq.host=localhost
##127.0.0.1
##默认端口
#spring.rabbitmq.port=5672
##spring.rabbitmq.password=guest
##spring.rabbitmq.username=guest
#spring.rabbitmq.password=
#spring.rabbitmq.username=
##
#spring.cloud.bus.enabled=true
#spring.cloud.bus.trace.enabled=true
###消息总线设置 , , , ,开启rabbit mq 暴露的服务端口 ,用于 执行 bus ,更新接口
##management.endpoints.web.exposure.include=bus-refresh
#management.endpoints.web.exposure.include="*"
#management.endpoints.bus-refresh.enabled=true

启动类

package com.example.configserver6001;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
import org.springframework.cloud.config.server.EnableConfigServer; @SpringBootApplication
//开启发现服务 ,,也可以使用 EnableEurekaClient
@EnableDiscoveryClient
//开启配置中心服务端
@EnableConfigServer
public class ConfigServer6001Application { public static void main(String[] args) {
SpringApplication.run(ConfigServer6001Application.class, args);
} }

4.获取远程配置的客户端 ,端口6080

目录结构

pom.xml

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>cen.cloud</groupId>
<artifactId>cen-mycloud</artifactId>
<version>0.0.1-SNAPSHOT</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.example</groupId>
<artifactId>config-client-6080</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>config-client-6080</name>
<description>Demo project for Spring Boot</description> <properties>
<java.version>1.8</java.version>
</properties> <dependencies>
<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>
<exclusions>
<exclusion>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
</exclusion>
</exclusions>
</dependency> <!--eureka 注册中心依赖包 -->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-eureka-server</artifactId>
</dependency> <!--配置中心-客户端依赖包-->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-config</artifactId>
</dependency> <!--健康检测管理中心 ,可刷新配置文件-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency> </dependencies> <build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build> </project>

新建文件 bootstrap.properties  【  优先级   bootstrap.properties > application.properties  > xxx.yml  】

#心得:
#需要提前知道远程配置中心的服务名称 和 远程配置文件名
#
#
#
#工程名/项目名/应用名/服务名
spring.application.name=config-client-6080
#端口号
server.port=6080
#获取指定配置文件名称 ,多个则以英文符号 , 隔开,不可有空格
spring.cloud.config.name=gittest
# ,configText ,gittest2
#经过测试发现,在不同文件【可能是properties或者yml】,如果其中有相同的字段,那么左边的文件的这个字段的值会被右边文件的覆盖,不区分properties和yml优先级
#
#
#获取配置信息,客户端不需要管这个文件是从git来的还是在服务端的本地文件
#
#获取配置的策略 , 读取文件:dev开发环境、test测试、pro生产
spring.cloud.config.profile=dev
#spring.cloud.config.profile.active=dev
#获取配置文件的分支,默认是master。如果是是本地获取的话,则无用,
spring.cloud.config.label=master
#开启配置信息发现
spring.cloud.config.discovery.enabled=true
#
#指定配置中心的service-id,便于扩展为高可用配置集群,不区分大小写
spring.cloud.config.discovery.serviceId=config-server-6001
#使用这个写法也一样,至于为啥有两种写法,还不清除
#spring.cloud.config.discovery.service-id=config-service
#
#是否启动快速失败功能,功能开启则优先判断config server是否正常,可开可不开
#spring.cloud.config.fail-fast=true
#
#
#这个是设置与Eureka Server交互的地址,客户端的查询服务和注册服务都需要依赖这个地址。
eureka.client.serviceUrl.defaultZone=http://localhost:7001/eureka/
#
#springboot 1.5.X 以上默认开通了安全认证,这里可加可不加,不影响
#management.security.enabled=false
#springboot 2.x 默认只开启了info、health的访问接口,*代表开启所有访问接口
management.endpoints.web.exposure.include=*
#
#可以使用 window指令框 发送post请求 刷新配置文件 ,curl -X POST http://localhost:200/actuator/refresh
#
#

启动类

package com.example.configclient6080;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient; @SpringBootApplication //开启发现服务 ,也可以使用 EnableEurekaClient
@EnableDiscoveryClient
public class ConfigClient6080Application { public static void main(String[] args) {
SpringApplication.run(ConfigClient6080Application.class, args);
} }

Controller层接口

package com.example.configclient6080.controller;

import org.springframework.beans.factory.annotation.Value;
import org.springframework.cloud.context.config.annotation.RefreshScope;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController; import java.util.Date; @RefreshScope
@RestController
public class GetController { @Value("${yourname}")
private String namestr; @RequestMapping(value = "/getname", method = RequestMethod.GET)
public String getConfig() { String str = "获取远程配置文件信息:" + namestr + "===" + new Date();
System.out.println(str);
return str;
} // http://localhost:6080/getname
}

5.其他准备

(1).提前准备配置 一个 端口为7001 的服务注册中心

(2). GitHub仓库准备文件

6.测试

网址访问 端口 6080  ,  http://localhost:6080/getname

修改GitHub仓库 gittest.properties 文件

再次 网址访问 端口 6080  ,  http://localhost:6080/getname ,发现配置文件没有更新

访问请求刷新配置文件接口, ,需要以post方式请求 http://localhost:6080/actuator/refresh

在window 系统 可以 cmd 打开指令框  执行   curl -X POST http://localhost:6080/actuator/refresh

也可以使用软件 postman ,

返回结果 显示 更新的字段内容 ,

如果是 【】则表示远程配置文件没有变化 ,但是仍然刷新成功了

现在  再次 网址访问 端口 6080  ,  http://localhost:6080/getname ,发现配置文件已经 更新

spring cloud --- 使用 actuator 热更新【刷新】单机配置文件的更多相关文章

  1. spring cloud 中Actuator不显示更多信息的处理方式

    spring cloud 中Actuator不显示更多信息的处理方式 直接咨询了周大立,他说 management.security.enabled = false 就可以了: 学习了:http:// ...

  2. Spring Cloud Bus实现自动更新配置

    一.概述 1. 配置环境 版本:Spring Boot版本2.0.3.RELEASE,Spring Cloud版本Finchley.SR1,RabbitMQ 3.7.7 说明:本文章是在https:/ ...

  3. Spring Cloud Gateway actuator组建对外暴露RCE问题漏洞分析

    Spring Cloud gateway是什么? Spring Cloud Gateway是Spring Cloud官方推出的第二代网关框架,取代Zuul网关.网关作为流量的,在微服务系统中有着非常作 ...

  4. Pomelo热更新刷新handler和remote 以及 pomelo使用bearcat进行热更新

    一. 开启 原生 pomelo 的hotreload支持 pomelo版本: 2.2.5 , 编辑脚本 app.js 加入如下代码 //全局配置 app.configure('production|d ...

  5. 在IDEA中配置spring boot项目的热更新

    在我使用IDEA的过程中,我发现Spring Boot项目本来自带的一个热部署工具无法使用,这里在参考各家博客后给出解决方案: 修改POM 首先POM文件需要包含spring boot的热部署工具,m ...

  6. Spring Cloud - Eureka /actuator/info 如何显示信息

    在pom.xml中添加 <!-- actuator监控信息完善 --> <dependency> <groupId>org.springframework.boot ...

  7. spring cloud 加入配置中心后的 部分 配置文件优先级

    经过一个小时的实验,得出部分配置优先级如下: bootstrap.properties:位于jar包外的优先级最高 application.properties:配置中心的文件 > 命令行配置 ...

  8. Spring Cloud(八):使用Spring Cloud Bus来实现配置动态更新

    使用Spring Cloud Config我们能实现服务配置的集中化管理,在服务启动时从Config Server获取需要的配置属性.但如果在服务运行过程中,我们需要将某个配置属性进行修改,比如将验证 ...

  9. spring cloud 使用spring cloud bus自动刷新配置

    Spring Cloud Bus提供了批量刷新配置的机制,它使用轻量级的消息代理(例如RabbitMQ.Kafka等)连接分布式系统的节点,这样就可以通过Spring Cloud Bus广播配置的变化 ...

随机推荐

  1. 南邮CTF-MISC-Remove Boyfriend

    Remove Boyfriend 打开wireshark,找到关键字部分Remove Boyfriend 在第五行 在此行右击 点击追踪流 选择TCP流,可以分析出流量的传输过程 通过上面的执行列表 ...

  2. java多线程并发编程中的锁

    synchronized: https://www.cnblogs.com/dolphin0520/p/3923737.html Lock:https://www.cnblogs.com/dolphi ...

  3. jupyter的使用技巧

    具体安装教程参见上一篇博客. 1.有几种格式code,编码模式:markdown注释格式: 2.如果出现no module named 'XX' ,需要在anaconda prompt中使用conda ...

  4. 手把手教你提交Jar包到Maven公共仓库 | 萌新写开源02

    在上一篇文章中,我介绍了自己的SpringBoot Starter项目,可以让我们使用注解的方式轻松地获取操作日志,并推送到指定数据源. 之前,我的项目开源在Github上,大家想要用我的项目,还得把 ...

  5. Mac 下安装Phonegap开发环境

    Mac 下安装Phonegap开发环境 2014.09.11  星期四 评论 0 条    阅读 5,613 次 作者:野草 标签:phonegap ios mac 什么是Phonegap呢?Phon ...

  6. Java实现HttpGet和HttpPost请求

    maven引入JSON处理jar <dependency> <groupId>com.alibaba</groupId> <artifactId>fas ...

  7. react 创建项目 sass router redux

    ​ 创建项目第一步 基本搭建 在创建之前,需要有一个git 仓库,我们要把项目搭建到git 中 目录介绍 cd 到某个盘 mkdir workspace 创建workspace文件夹 cd works ...

  8. JAVAWEB使用FreeMarker利用ftl把含有图片的word模板生成word文档,然后打包成压缩包进行下载

    这是写的另一个导出word方法:https://www.cnblogs.com/pxblog/p/13072711.html 引入jar包,freemarker.jar.apache-ant-zip- ...

  9. Intellij IDEA中Springboot启动报Command line is too long错误

    启动报错:Error running 'CmsFrontApplication': Command line is too long. Shorten command line for CmsFron ...

  10. 【LeetCode】775. Global and Local Inversions 解题报告(Python)

    作者: 负雪明烛 id: fuxuemingzhu 个人博客: http://fuxuemingzhu.cn/ 题目地址: https://leetcode.com/problems/global-a ...