日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

spring boot 配置动态刷新

發(fā)布時間:2024/7/5 编程问答 31 豆豆
生活随笔 收集整理的這篇文章主要介紹了 spring boot 配置动态刷新 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.

本文測試使用的spring?cloud版本為:

Dalston.SR1

?

很多朋友只知道spring?cloud?config可以刷新遠程git的配置到內(nèi)存中,

卻不知道spring?cloud?config的客戶端可以脫離服務端使用,

更不知道spring?cloud?config客戶端結(jié)合actuator還可以刷新本地的配置文件到內(nèi)存中。

?

具體做法如下:

1、pom:

<?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 http://maven.apache.org/xsd/maven-4.0.0.xsd"><modelVersion>4.0.0</modelVersion><groupId>com.liuyx</groupId><artifactId>test-config-refresh</artifactId><version>1.0-SNAPSHOT</version><parent><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-parent</artifactId><version>1.5.4.RELEASE</version><relativePath/> <!-- lookup parent from repository --></parent><dependencies><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-web</artifactId></dependency><dependency><groupId>org.springframework.cloud</groupId><artifactId>spring-cloud-starter-config</artifactId></dependency><!--監(jiān)控+refresh配置--><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-actuator</artifactId></dependency></dependencies><dependencyManagement><dependencies><dependency><groupId>org.springframework.cloud</groupId><artifactId>spring-cloud-dependencies</artifactId><version>Dalston.SR1</version><type>pom</type><scope>import</scope></dependency></dependencies></dependencyManagement></project>

?

單獨引入 spring-boot-starter-actuator或者spring-cloud-starter-config(spring?cloud?config的客戶端)? 是不會暴露/refresh端點的,兩者同時引入之后才能暴露/refresh端點。

?

2、一般使用spring-cloud-starter-config的文章都會讓你在bootstrap里加上配置中心服務端的地址,這里我們要脫離配置中心服務端使用,所以這些配置完全不需要。

?

3、對需要刷新的屬性使用@Value注解,同時將類使用@RefreshScope注解進行標記,示例如下:

package com.liuyx.test;import org.springframework.beans.factory.annotation.Value; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.cloud.context.config.annotation.RefreshScope; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController;@SpringBootApplication @RestController @RefreshScope public class Main {public static void main(String[] args) {SpringApplication.run(Main.class);}private static int port;@Value("${server.port}")public void setPort(int port){this.port=port;}@RequestMapping("/port")public int port(){return port;} }

這里我的變量是一個static變量,所以只能在非static的set方法上加@Value注解,而不是變量定義行的上方。如果不是靜態(tài)變量則可以直接寫作:

@Value("${server.port}")private int port;

?

4、application.properties配置

server.port=80 local.test=hello1 management.security.enabled=false

?

5、測試

  1、啟動項目,訪問 http://localhost/port?顯示 80

  2、修改classpath(注意是classpath,即你編譯后的class文件所處的目錄)下的application.properties將server.port改為801

  

?

  3、發(fā)送空post(注意是post)請求到 http://localhost:80/refresh

?

  4、再次訪問?http://localhost/port?顯示 801?測試成功

?

最后的補充:

  即使結(jié)合配置中心服務端使用,該方法也是有效的,所有有效位置的有效配置文件(如git上的,jar內(nèi)的,jar外的)都會被掃描,并根據(jù)一定的順序進行覆蓋,覆蓋順序傳送門

?

?

轉(zhuǎn)載于:https://www.cnblogs.com/bevis-byf/p/11491302.html

總結(jié)

以上是生活随笔為你收集整理的spring boot 配置动态刷新的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯,歡迎將生活随笔推薦給好友。