springboot 启动前动态修改yaml配置文件值并使之生效

1、引入yaml文件相关的包

<dependency>
    <groupId>org.yaml</groupId>
    <artifactId>snakeyaml</artifactId>
    <version>1.23</version>
</dependency>

2、在启动类中添加相关调用的代码,yaml提供的load()方法加载文件内容,再通过dump()方法回写内容。以下例子为修改springboot jackson时间时区

/**
 * 动态修改注入yaml配置文件的值
 */
private static void dynamicUpdateYaml(){
    try {
        Map m1,m2,m3;
        Yaml yaml = new Yaml();
        File file = new File(StarterApplication.class.getClassLoader().getResource("config/application.yaml").getFile());

        m1 = (Map) yaml.load(new FileInputStream(file));
        m2 = (Map) m1.get("spring");
        m3 = (Map) m2.get("jackson");
        m3.put("time-zone", System.getProperty("user.timezone"));
        m3.put("locale", System.getProperty("user.country"));

        FileWriter fileWriter = new FileWriter(file);
        fileWriter.write(yaml.dump(m1));
        fileWriter.flush();
        fileWriter.close();
    } catch (IOException e) {
        e.printStackTrace();
    } catch (Exception e) {
        e.printStackTrace();
    }
}
评论 5
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值