web-dev-qa-db-ja.com

スプレーjsonでMap [String、Any]をシリアル化します

Map [String、Any]をspray-jsonでシリアル化するにはどうすればよいですか?やってみます

val data = Map("name" -> "John", "age" -> 42)
import spray.json._
import DefaultJsonProtocol._
data.toJson

Cannot find JsonWriter or JsonFormat type class for scala.collection.immutable.Map[String,Any]

18
Yaroslav

これは、私がこのタスクを実行するために使用した暗黙のコンバーターです。

  implicit object AnyJsonFormat extends JsonFormat[Any] {
    def write(x: Any) = x match {
      case n: Int => JsNumber(n)
      case s: String => JsString(s)
      case b: Boolean if b == true => JsTrue
      case b: Boolean if b == false => JsFalse
    }
    def read(value: JsValue) = value match {
      case JsNumber(n) => n.intValue()
      case JsString(s) => s
      case JsTrue => true
      case JsFalse => false
    }
  }

スプレーユーザーグループの この投稿 から適応されましたが、ネストされたシーケンスとマップをJsonに書き込むことができず、書き込む必要もなかったので、それらを取り出しました。

26
Gangstead

あなたの場合に機能するはずの別のオプションは、

data.parseJson.convertTo[Map[String, JsValue]]
6