在Typesafe配置中使用环境变量覆盖配置

在Typesafe配置中使用环境变量覆盖配置

本文介绍了在Typesafe配置中使用环境变量覆盖配置的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

使用类型安全配置,如何使用环境变量覆盖参考配置?例如,假设我具有以下配置:

Using typesafe config, how do I override the reference configuration with an environment variable? For example, lets say I have the following configuration:

foo: "bar"

我希望使用环境变量FOO覆盖它.

I want it to be overriden with the environment variable FOO if one exists.

推荐答案

如果我正确理解了您的问题,答案为此处.你可以做

If I correctly understood your question, the answer is here.You can do

foo: "bar"
foo: ${?FOO}

这篇关于在Typesafe配置中使用环境变量覆盖配置的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-05 12:40