给定嵌套的
JSON作为配置,如:
{ app: { id: "app1" instances: 2,servers: [ { host: "farm1.myco.com",port: 9876 } { host: "farm2.myco.com",port: 9876 } ] } }
使用typeSafe配置时,是否可以直接在路径中寻址数组的元素?
目前我们需要做类似以下的事情,这有点冗长:
val servers = config.getObjectList("app.servers") val server = servers.get(0).toConfig val host = server.getString("host") val port = server.getInt("port")
这样的事情是理想的:
val host = config.getString(“app.servers.0.host”)?
解决方法
到目前为止这似乎是不可能的.
见 https://github.com/typesafehub/config/issues/30
见 https://github.com/typesafehub/config/issues/30