我正在尝试使用aka和spray,我想要实现的是一个简单的对象编组服务。
当我尝试编译代码时,我收到以下错误:
Error:(33, 18) could not find implicit value for parameter marshaller: spray.httpx.marshalling.Marshaller[ExampleApplication.Password] marshal(Password(randomString(8),i,0)) ^
以下是代码:
import akka.actor.ActorSystem
import spray.http.HttpEntity
import spray.json.DefaultJsonProtocol
import spray.routing.SimpleRoutingApp
import spray.httpx.marshalling._
import spray.json._
object ExampleApplication extends App with SimpleRoutingApp {
implicit val actorSystem = ActorSystem()
implicit var i = 0;
object MyJsonProtocol extends DefaultJsonProtocol {
implicit val PasswordFormat = jsonFormat3(Password)
}
case class Password(pass: String, count: Int, complexity: Int)
def newPass(cplx: Int):Password = {return Password(randomString(cplx),i,0)}
startServer(interface = "localhost", port = 8080) {
get {
path("passgen") {
i+=1
complete {
marshal(newPass(8))
}
}
}
}
def randomString(n: Int): String = {
n match {
case 1 => util.Random.nextPrintableChar().toString
case _ => util.Random.nextPrintableChar.toString ++ randomString(n - 1).toString
}
}
}
我仍然无法理解出了什么问题。
答案 0 :(得分:2)
修改它的两个更改:
import spray.httpx.SprayJsonSupport._
然后,即使您在应用中定义了JsonProtocol对象,您仍然必须明确地导入它的成员:
object MyJsonProtocol extends DefaultJsonProtocol {
implicit val PasswordFormat = jsonFormat3(Password)
}
import MyJsonProtocol._
在这种情况下,这看起来有点重复,但在大多数用例中,您将其定义在其他地方。
可选
您可以在不明确调用marshal
的情况下完成调用:
complete {
newPass(8)
}