使用 Circe 将 null 值映射到 Scala 中的 None



继续这个问题,我有以下代码,但想将nullJSON 值映射到 Scala None。我目前的行为是,包含null("key": null)key和不包含它之间没有区别。我想将其映射到None以便我可以将数据库条目设置为null.此外,当 JSON 中未包含key时,请将其映射到现有值。

import io.circe.jawn.decode, io.circe.generic.auto._
case class Person(name: String, age: Int, description: Option[String])
val existingPerson = Person("mr complete", 42, Some("tall and fat"))
val incompletePersonJson = """{"description":null}"""
val update = decode[Person => Person](incompletePersonJson)

然后:

scala> println(update.map(_(existingPerson)))
Right(Person(mr updated,42,Some(tall and fat)))

但我想得到:

Right(Person(mr updated,42,None))

我最终得到了以下解决方案,它可能不理想,它没有使用 Circe,但它为我完成了这项工作:

def getJsonNullKeys(json: Json): List[String] = {
json.asObject match {
case Some(jsonObject) => jsonObject.filter(j => j._2.isNull).keys.toList
case None => List[String]()
}
}
if (update.isRight) {
update.right.map(_(existingPerson)) match {
case Right(updatedPerson) =>
getNullKeys(incompletePersonJson).foreach { key =>
val field = existingPerson.getClass.getDeclaredField(key)
field.setAccessible(true)
field.set(updatedUpdate, None)
}
println(updatedUpdate)
// outputs Person(mr updated,42,None)
case Left(error) => println(error.toString)
}
}

Hope Circe为此添加了支持,因此可以删除所有这些样板。

相关内容

  • 没有找到相关文章

最新更新