I am having a generic json serialization method that uses json4s
. Unfortunately, it is ignoring fields if the value is None
. My goal is to have None
fields be represented with a null
value. I tried by adding custom serializer for None, but still it is not working.
object test extends App {
class NoneSerializer extends CustomSerializer[Option[_]](format => (
{
case JNull => None
},
{
case None => JNull
}))
implicit val f = DefaultFormats + new NoneSerializer
case class JsonTest(x: String, y: Option[String], z: Option[Int], a: Option[Double], b: Option[Boolean], c:Option[Date], d: Option[Any])
val v = JsonTest("test", None, None,None,None,None,None);
println(Serialization.write(v))
}
Result from the above code :
{"x":"test"}
I tried this link and some others, but is is not solving the issue for case classes