gpt4 book ai didi

java - 打印通过 Spring PropertyPlaceholderConfigurer 设置的所有属性

转载 作者:塔克拉玛干 更新时间:2023-11-03 03:16:36 30 4
gpt4 key购买 nike

我想在启动时打印我们的应用程序中设置的综合属性列表。执行此操作的最佳方法是什么?

谢谢

最佳答案

这是我的实现:

public class CustomPropertySourcesPlaceholderConfigurer extends PropertySourcesPlaceholderConfigurer implements InitializingBean{

public void afterPropertiesSet(){
try{
Properties loadedProperties = this.mergeProperties();
for(Entry<Object, Object> singleProperty : loadedProperties.entrySet()){
logger.info("LoadedProperty: "+singleProperty.getKey()+"="+singleProperty.getValue());
}
}catch(Exception ex){
ex.printStackTrace();
}
}
}

关于java - 打印通过 Spring PropertyPlaceholderConfigurer 设置的所有属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8298344/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com