我可以在play框架中使用spray-json进行json序列化吗? 我已经试过了,但似乎确实没有用。
我尝试了一个简单的动作
def getColor(sn: Int ) = Action {
import MyJsonProtocol._
val c = Color("color",33,23,99)
Ok(c.toJson)
}
我收到以下错误
play.sbt.PlayExceptions$CompilationException: Compilation error[Cannot write an instance of spray.json.JsValue to HTTP response. Try to define a Writeable[spray.json.JsValue]]
答案 0 :(得分:1)
有趣;)我通过调用toJson
上的prettyPrint方法自行修复它Event