我正在使用 Scala 和 Finch 迈出第一步,并开发了一个非常简单的 rest API。目前一切正常,但除了“localhost”之外,我无法提供任何服务,而且我没有明显的方法来指定它。
我在过去的一个小时里用谷歌搜索并梳理了文档,但我无法终生确定我是如何指定 IP 地址的
object Main extends App with Endpoint.Module[IO] {
val egService = new EgService
val IPService = new IPService
val hostIP = IPService.getIP
def healthCheck: Endpoint[IO, String] = get(pathEmpty) { Ok("OK") }
def helloWorld: Endpoint[IO, Message] = get("hello") {
egService.getMessage().map(Ok)
}
def sayHello: Endpoint[IO, Message] = get("hello" :: path[String]) {
s: String =>
egService.getMessage(s).map(Ok)
}
def service: Service[Request, Response] =
Bootstrap
.serve[Text.Plain](healthCheck.handle {
case e: Exception => InternalServerError(e)
})
.serve[Application.Json](helloWorld.handle {
case e: Exception => InternalServerError(e)
} :+: sayHello.handle {
case e: Exception => InternalServerError(e)
})
.toService
println(s"Trying to serve $hostIP on port 8080...")
Await.ready(Http.server.serve(":8080", service))
}
正如我所说,上面的代码完全按照我的预期工作,并且我能够卷曲localhost:8080
以获得适当的响应,但除此之外我被难住了。我尝试指定:
Http.server.serve(s"$hostIP:8080", service)
但这似乎被忽略了。除此之外,我完全糊涂了。使用http4s
时很简单:
BlazeServerBuilder[IO]
.bindHttp(8080, hostIP)
所以我觉得我一定错过了一些明显的东西。