當玩,AKK-HTTP實驗1.0-M2我試圖創建一個簡單的Hello世界的例子。找不到隱含的...:akka.http.server.RoutingSetup
import akka.actor.ActorSystem
import akka.http.Http
import akka.http.model.HttpResponse
import akka.http.server.Route
import akka.stream.FlowMaterializer
import akka.http.server.Directives._
object Server extends App {
val host = "127.0.0.1"
val port = "8080"
implicit val system = ActorSystem("my-testing-system")
implicit val fm = FlowMaterializer()
val serverBinding = Http(system).bind(interface = host, port = port)
serverBinding.connections.foreach { connection ⇒
println("Accepted new connection from: " + connection.remoteAddress)
connection handleWith Route.handlerFlow {
path("") {
get {
complete(HttpResponse(entity = "Hello world?"))
}
}
}
}
}
編譯失敗could not find implicit value for parameter setup: akka.http.server.RoutingSetup
另外,如果我改變
complete(HttpResponse(entity = "Hello world?"))
與
complete("Hello world?")
我得到另一個錯誤:type mismatch; found : String("Hello world?") required: akka.http.marshalling.ToResponseMarshallable