1. 程式人生 > 實用技巧 >Spring boot 應用實現動態重新整理配置

Spring boot 應用實現動態重新整理配置

1. 依賴

需要引入下面三個依賴:

compile('org.springframework.cloud:spring-cloud-starter-config')
compile('org.springframework.boot:spring-boot-starter-actuator')
compile('org.springframework.boot:spring-boot-starter-web')

(1)spring-cloud-starter-config是為了實現重新整理配置
(2)spring-boot-starter-actuator是為了暴露修改/重新整理配置的介面
(3)spring-boot-starter-web是為了可以訪問暴露的修改/重新整理配置的介面

2. 配置暴露介面

application.properties

#使用埠9999
server.port=9999
#暴露介面
management.endpoints.web.exposure.include=env,refresh

(1)env介面,可以獲取配置(GET),也可以修改配置(POST)
(2)refresh介面,可以重新整理配置(POST),使得@RefreshScope標註的value可以重新注入。

3. @RefreshScope

在需要實時重新整理配置的地方加上@RefreshScope註解

4. 啟動服務

5. 修改配置

訪問localhost:9999/actuator/env(GET),可以獲得此時的配置
訪問localhost:9999/actuator/env(POST)

{
    "name":"somekey",
    "value":"newvalue"
}

如上可以把配置中somekey對應的值改為newvalue

6. 獲取配置值

不呼叫重新整理介面,直接獲取注入的配置值,發現還是舊的值

7. 重新整理配置 重新獲取

訪問localhost:9999/actuator/refresh(POST)重新整理配置
重新獲取注入的配置值,發現是新的值