在 Ktor 0.9.3 应用程序中,我希望.conf
为不同的环境提供不同的文件,我在其中扩展了一个主.conf
文件。但是,我收到以下异常:
Exception in thread "main" com.typesafe.config.ConfigException$NotResolved: called valueType() on value with unresolved substitutions, need to Config#resolve() first, see API docs
at com.typesafe.config.impl.ConfigDelayedMerge.valueType(ConfigDelayedMerge.java:46)
at com.typesafe.config.impl.SimpleConfig.hasPath(SimpleConfig.java:96)
at io.ktor.config.HoconApplicationConfigKt.tryGetString(HoconApplicationConfig.kt:33)
at io.ktor.server.engine.CommandLineKt$commandLineEnvironment$environment$1.invoke(CommandLine.kt:64)
at io.ktor.server.engine.CommandLineKt$commandLineEnvironment$environment$1.invoke(CommandLine.kt)
at io.ktor.server.engine.ApplicationEngineEnvironmentBuilder.build(ApplicationEngineEnvironment.kt:55)
at io.ktor.server.engine.ApplicationEngineEnvironmentKt.applicationEngineEnvironment(ApplicationEngineEnvironment.kt:38)
at io.ktor.server.engine.CommandLineKt.commandLineEnvironment(CommandLine.kt:50)
at io.ktor.server.netty.DevelopmentEngine.main(DevelopmentEngine.kt:13)
at ApplicationKt.main(application.kt:24)
这是我的application.conf
文件:
ktor {
deployment {
port = 8080
port = ${?PORT}
watch = [ website ]
}
application {
modules = [ ApplicationKt.module ]
}
}
ui {
hotreload {
enabled = false
path-prefix = "http://localhost:3000"
}
}
以及我想使用的扩展它:
include "application.conf"
ui.hotreload.enabled = true
任何想法出了什么问题以及如何解决它?