Typesafe配置 - 从地图/文件解析并解析

时间:2017-03-20 12:42:02

标签: scala config typesafe-config

我从字符串解析配置时可以解析替换,但在从地图或文件解析时不能解析。

import java.io.File
import com.typesafe.config.{Config, ConfigFactory}
import scala.collection.JavaConversions.mapAsJavaMap

val s: String = "a = test, b = another ${a}"
val m: Map[String, String] = Map("a" -> "test", "b" -> "another ${a}")
val f: File = new File("test.properties") // contains "a = test\nb = another ${a}"

val cs: Config = ConfigFactory.parseString(s).resolve
val cm: Config = ConfigFactory.parseMap(mapAsJavaMap(m)).resolve
val cf: Config = ConfigFactory.parseFile(f).resolve

println("b from string = " + cs.getString("b"))
println("b from map = " + cm.getString("b"))
println("b from file = " + cf.getString("b"))

> b from string = another test
> b from map = another ${a}
> b from file = another ${a}

当我没有立即解决时,可见的变量占位符实际上并没有得到同样的处理:

val cs: Config = ConfigFactory.parseString(s)
val cm: Config = ConfigFactory.parseMap(mapAsJavaMap(m))
val cf: Config = ConfigFactory.parseFile(f)

> cs: com.typesafe.config.Config = Config(SimpleConfigObject({"a":"test","b":"another "${a}}))
> cm: com.typesafe.config.Config = Config(SimpleConfigObject({"a":"test","b":"another ${a}"}))
> cf: com.typesafe.config.Config = Config(SimpleConfigObject({"a":"test","b":"another ${a}"}))

我可能只是将map / file转换为字符串,但有没有办法让库处理它?<​​/ p>

1 个答案:

答案 0 :(得分:3)

ConfigFactory.parseMap方法导致fromAnyRef,我们的相关部分是:

if (object instanceof String)
  return new ConfigString.Quoted(origin, (String) object);

它永远不会将值解析为ConfigReference,因此resolve无法正常工作。

他们的理由可能是,如果你“控制”数据结构,那么你可以以某种方式利用scala字符串插值。

对于parseFile,情况更容易。 Java属性文件不支持${}替换,文件类型由(.properties)文件扩展名猜测。

例如,你可以使用HOCON格式:你只需要重命名文件(例如test.conf),${}替换应该在以外的地方工作:框。

此处提供更多信息:HOCON