淺談SpringBoot2.3 新特配置文件屬性跟蹤
背景
當我們使用 spring boot 在多環(huán)境打包,配置屬性在不同環(huán)境的值不同,如下:
spring: profiles: active: @project.profile@ #根據maven 動態(tài)配置profile --- spring: profiles: dev demo: lengleng_dev --- spring: profiles: prd demo: lengleng_prd
或者使用 spring cloud 配置中心 (nacos/config)等

再有就是 應用配置的同一個屬性,值的來源可能來自配置文件、環(huán)境變量、啟動參數等等。 很多情況由于如上配置的復雜性,應用在讀取配置的時候,并不是我們預期的值,比如我們想使用是配置文件 dev 環(huán)境的值,卻被環(huán)境變量的 或者其他的數據覆蓋等,這些往往只有等我們運行時,輸出日志才能發(fā)現(xiàn)錯誤原因。
解決方案
spring boot 2.3 Actuator 提供 /actuator/configprops 端點 (之前版本也有此端點,但是行為發(fā)生變化了 /actuator/env 保持一致 ),提供對配置文件屬性跟蹤功能,方便我們在 spring boot 應用中,實時的獲取配置文件實際加載值。
如何使用
引入 actuator 依賴
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> </dependency>
暴露 configprops 端點
management:
endpoints:
web:
exposure:
include: 'configprops'
對應配置類
@Data
@Component
@ConfigurationProperties("demo")
public class DemoConfig {
private String username;
private String password;
}
訪問 Endpoint 實時獲取配置文件的值

特殊說明
configprops Endpoint 會對敏感字段默認脫敏 ,默認關鍵字類
public class Sanitizer {
private static final String[] REGEX_PARTS = { "*", "$", "^", "+" };
private static final Set<String> DEFAULT_KEYS_TO_SANITIZE = new LinkedHashSet<>(Arrays.asList("password", "secret",
"key", "token", ".*credentials.*", "vcap_services", "sun.java.command"));
}
配置個性化脫敏規(guī)則
management:
endpoint:
configprops:
keys-to-sanitize:
- 'aaa'
- 'bbb'
當配置類的某個屬性值為空時, 通過 /actuator/configprops 訪問,不會展示此屬性。
總結
configprops 端點對應 ConfigurationPropertiesReportEndpoint 類, 通過閱讀 可以了解從 PropertySource 獲取配置的技巧
應用場景: CI 在執(zhí)行單元測試的前置應該通過此端點判斷配置是否和預期一致,避免無用執(zhí)行條件
以上源碼可以參考: https://github.com/lltx/spring-boot-course
到此這篇關于淺談SpringBoot2.3 新特配置文件屬性跟蹤的文章就介紹到這了,更多相關SpringBoot2.3 文件屬性跟蹤內容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關文章希望大家以后多多支持腳本之家!
相關文章
Spring模塊詳解之Spring ORM和Spring Transaction詳解
Spring ORM 是 Spring 框架的模塊之一,旨在簡化與 JPA、Hibernate、JDO 等 ORM 工具的集成,通過提供統(tǒng)一的 API 和模板類,如 HibernateTemplate 和 JpaTemplate,Spring ORM 使開發(fā)者可以更便捷地執(zhí)行數據庫操作,感興趣的朋友跟隨小編一起看看吧2024-09-09
spring中@ControllerAdvice 注解的使用
@ControllerAdvice注解是Spring3.2中新增的注解,主要用于Controller的全局配置,本文就來介紹一下spring中@ControllerAdvice 注解的使用,感興趣的可以了解一下2024-09-09
Spring中BeanUtils.copyProperties的坑及解決
這篇文章主要介紹了Spring中BeanUtils.copyProperties的坑及解決方案,具有很好的參考價值,希望對大家有所幫助,如有錯誤或未考慮完全的地方,望不吝賜教2023-09-09
mybatis參數類型不匹配錯誤argument type mismatch的處理方案
這篇文章主要介紹了mybatis參數類型不匹配錯誤argument type mismatch的處理方案,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教2022-01-01

