I have a case class like the following:
case class MyConfig(arg1:String, extraArgs:Map[String,String])
and I would like the following to be parsable from the HOCON config
{
arg1 = 'hello world'
}
However this fail because extraArgs
is not defined. I could make extraArgs
optional in my case class, but this would be redundant. Is there a way to instruct PureConfig to parse an absent field as an empty collection?
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…