/**
* 读取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
相关推荐
小光学长2 分钟前
基于vue框架的的流浪宠物救助系统25128(程序+源码+数据库+调试部署+开发环境)系统界面在最后面。零炻大礼包1 小时前
【SQL server】数据库远程连接配置zmgst1 小时前
canal1.1.7使用canal-adapter进行mysql同步数据随心............1 小时前
python操作MySQL以及SQL综合案例€☞扫地僧☜€1 小时前
docker 拉取MySQL8.0镜像以及安装CopyDragon1 小时前
设置域名跨越访问xjjeffery1 小时前
MySQL 基础写bug的小屁孩1 小时前
前后端交互接口(三)恒辉信达1 小时前
hhdb数据库介绍(8-4)齐 飞2 小时前
MongoDB笔记01-概念与安装