Play framework: read Json containing null values

2019-06-22 15:54发布

I'm trying to read Json data in my Play Scala program. The Json may contain nulls in some fields, so this is how I defined the Reads object:

  implicit val readObj: Reads[ApplyRequest] = (
      (JsPath \ "a").read[String] and
      (JsPath \ "b").read[Option[String]] and
      (JsPath \ "c").read[Option[String]] and
      (JsPath \ "d").read[Option[Int]]
    )  (ApplyRequest.apply _) 

And the ApplyRequest case class:

case class ApplyRequest ( a: String,
                          b: Option[String],
                          c: Option[String],
                          d: Option[Int],
                          )

This does not compile, I get No Json deserializer found for type Option[String]. Try to implement an implicit Reads or Format for this type.

How to declare the Reads object to accept possible nulls?

1条回答
我只想做你的唯一
2楼-- · 2019-06-22 16:53

You can use readNullable to parse missing or null fields:

implicit val readObj: Reads[ApplyRequest] = (
  (JsPath \ "a").read[String] and
  (JsPath \ "b").readNullable[String] and
  (JsPath \ "c").readNullable[String] and
  (JsPath \ "d").readNullable[Int]
)  (ApplyRequest.apply _)
查看更多
登录 后发表回答