Ammonite 和 Akka-Http 配置文件错误

Ammonite and Akka-Http config file error

我正在尝试将 akka-http 服务器嵌入到我的 ammonite scala 脚本中。

下面是用于创建服务器实例的scala代码

import ammonite.ops._

import $ivy.`com.typesafe:config:1.3.1`
import $ivy.`com.typesafe.akka:akka-http_2.12:10.0.6`
import akka.actor.ActorSystem
import akka.stream.ActorMaterializer
import akka.http.scaladsl.Http
import akka.http.scaladsl.server.Directives._
import com.typesafe.config.ConfigFactory
import java.io._

@main
def main() = {
  val fileConfig = ConfigFactory.parseFile(new File("resources/my.conf"))
  val config = ConfigFactory.load(fileConfig)

  println(config)

  implicit val actorSystem = ActorSystem("system")
  implicit val actorMaterializer = ActorMaterializer()

  val route =
    pathSingleSlash {
      get {
        complete {
          "Hello world"
        }
      }
    }
  Http().bindAndHandle(route,"localhost",8080)
  println("server started at 8080")
}

这里是 my.conf 文件内容:

akka {
  loglevel = INFO
  stdout-loglevel = INFO
  default-dispatcher {
    fork-join-executor {
      parallelism-min = 8
    }
}

运行 带有 amm server.sc 的脚本出现以下错误:

Exception in thread "main" com.typesafe.config.ConfigException$Missing: No configuration setting found for key 'akka'

标准 application.conf 文件名约定也是如此。

我可以读取文件并正确获取内容。 我错过了什么?

非常感谢

您需要像 ActorSystem("system", config)

一样将配置传递给 ActorSystem