0

主题:Hocon 中的变量、字符串连接和日期替换。

当前用例:我正在尝试通过 Hocon Config 获取一个带有如下日期的简单字符串:“myElasticSearchIndex_25Jan2018”

我在 hocon 中尝试了什么:

   todayDate {
      day =${time.day}
      month=${time.month}
     }

C#

     var todayDate = config.GetString("todayDate.day");

错误:Akka.dll 中出现“System.FormatException”类型的未处理异常:附加信息:未解决的替换:time.day

问题:我如何做一个gatedate()?或 getmonth() 或 getday() 通过 hocon 上的替换?

文档对此并不清楚: https ://github.com/lightbend/config/blob/master/HOCON.md#units-format

4

0 回答 0