没有找到喷雾清单Marshaller

时间:2014-09-20 17:56:59

标签: scala akka spray spray-json spray-dsl

此代码导致could not find implicit value for parameter marshaller: spray.httpx.marshalling.ToResponseMarshaller[List[akka.actor.ActorRef]]的编译错误。

我不认为问题是ActorRef,因为将此更改为.mapTo[List[String]]会显示相同的编译错误

一般情况下,喷雾如何对所有暗示进行编组有点令人困惑 - 是否有办法明确说明ListProtocol.marshal(value)

import akka.actor.Actor
import spray.http.HttpResponse
import spray.http.HttpRequest
import spray.http.Uri
import spray.http._
import spray.routing._
import HttpMethods._
import akka.actor.ActorRef
import akka.pattern.ask
import scala.concurrent.duration._
import scala.concurrent.ExecutionContext.Implicits.global
import scala.util.Success
import scala.util.Failure
import spray.http.StatusCodes.InternalServerError
import spray.json.DefaultJsonProtocol
import spray.httpx.SprayJsonSupport._
import spray.httpx.marshalling._
import spray.http._

class HttpApi(val manager: ActorRef) extends HttpServiceActor {

  def receive = runRoute {
    path("nodes") {
      get {
        onComplete(manager.ask(NodeList())(3.seconds).mapTo[List[ActorRef]]) {
          case Success(value) => {
            // Compile error happens here
            complete(value)
          }
          case Failure(ex) => {
            complete(InternalServerError, s"An error occurred: ${ex.getMessage}")
          }
        }
      }
    }
  }
}

1 个答案:

答案 0 :(得分:7)

更改此导入

import spray.json.DefaultJsonProtocol

import spray.json.DefaultJsonProtocol._

也就是说,您想要导入该对象中定义的含义,而不是对象本身。

或者你可以扩展特征以获取暗示:

class HttpApi(val manager: ActorRef) extends HttpServiceActor
                                        with DefaultJsonProtocol {
相关问题