/**
* 读取bootstrap配置文件
*/
@Component
public class YmlUtils {
private static final Map<String, String> confMap = new HashMap(256);
static {
ClassLoader classLoader = YmlUtils.class.getClassLoader();
Yaml yaml = new Yaml();
InputStream bootstrapIn = classLoader.getResourceAsStream("bootstrap.yml");
if (bootstrapIn != null) {
fillConfMap(yaml.loadAs(bootstrapIn, Map.class), confMap, null);
IOUtils.closeQuietly(bootstrapIn);
}
}
private static void fillConfMap(Map<String, Object> sourceMap, Map<String, String> destinationMap, String key) {
sourceMap.forEach((key1, v) -> {
String k = key != null ? key + "." + key1 : key1;
if (v instanceof Map) {
fillConfMap((Map) v, destinationMap, k);
} else {
destinationMap.put(k, String.valueOf(v));
}
});
}
public static String getConfig(String key, String defualtValue) {
String value = confMap.get(key);
return value != null && !"".equals(value.trim()) ? value : defualtValue;
}
public static String getConfig(String key) {
return confMap.get(key);
}
public static String getAppName(){
return getConfig("spring.application.name");
}
}
静态方法获取 配置文件的内容
guoyiguang22023-11-11 9:15
相关推荐
Allen Bright33 分钟前
Redis主从架构ZHOU西口37 分钟前
MySQL系列之远程管理(安全)Karoku0661 小时前
【docker集群应用】Docker网络与资源控制扬子鳄0082 小时前
Spring Boot自动配置机制秋意钟2 小时前
sql漏洞cdut_suye2 小时前
C++11新特性探索:Lambda表达式与函数包装器的实用指南Mr_Xuhhh2 小时前
程序地址空间大明湖的狗凯.2 小时前
MySQL 中的乐观锁与悲观锁真上帝的左手2 小时前
数据库-MySQL-MybatisPlus整合多数据源奈斯ing2 小时前
【MySQL篇】持久化和非持久化统计信息的深度剖析(第一篇,总共六篇)