我将一些字符串外部化到 HOCON,在application.conf
. 我正在访问这样的配置值:
import play.api.Play.current
import play.api.Play.configuration
configuration.getString("foo.bar").get()
尽可能早地,在丢失密钥的情况下快速失败,就像文档说的那样。
现在我的一些依赖于配置对象的测试失败了,堆栈跟踪指出:
Caused by: java.lang.RuntimeException: There is no started application
我认为这与配置有关?我怎样才能解决这个问题?(测试是specs2)