我想解决一个Config
对象,说config1
另一个,说config2
。
唯一允许此类操作的公共 API 是config1.withFallback(config2).resolve()
. 但是,这会添加我们不想要的config2
条目。config1
在一些调查中,我们发现了一个名为的非公共类ResolveContext
,它为此提供了一种方法。所以我们使用反射来利用它。我们当前的代码:
object ConfigImplicits {
implicit class RichConfig(val config: Config) extends AnyVal {
def resolveWith(source: Config): Config = {
val resolver = resolveContext.getDeclaredMethod(
"resolve",
abstractConfigValue,
abstractConfigObject,
configResolveOptions
)
resolver.setAccessible(true)
resolver.invoke(
null,
config.underlyingAbstractConfigObject,
source.underlyingAbstractConfigObject,
ConfigResolveOptions.defaults
).asInstanceOf[ConfigObject].toConfig
}
def underlyingAbstractConfigObject = {
val f = simpleConfig.getDeclaredField("object")
f.setAccessible(true)
f.get(config)
}
}
val resolveContext = Class forName "com.typesafe.config.impl.ResolveContext"
val abstractConfigValue = Class forName "com.typesafe.config.impl.AbstractConfigValue"
val abstractConfigObject = Class forName "com.typesafe.config.impl.AbstractConfigObject"
val configResolveOptions = classOf[ConfigResolveOptions]
val simpleConfig = Class forName "com.typesafe.config.impl.SimpleConfig"
}
我们意识到,依靠非公开内部信息可能不是一个好主意。所以:
- 是否有一个我们以某种方式错过的公共方法已经这样做了?
- 如果没有,我们是否应该提出拉取请求?