是否可以使半自动解码器考虑案例类字段的默认值?
以下代码将失败,并显示:
Left(DecodingFailure(Attempt to decode value on failed cursor, List(DownField(isActive))))
我认为circe会考虑案例类字段isActive
case class Person(
id: Option[Int] = None,
name: String,
isActive: Boolean = true
)
implicit val personJsonDecoder: Decoder[Person] = deriveDecoder
val rawJson = """
{
"name": "Geovanny Junio"
}
"""
val r = for {
j <- parse(rawJson)
p <- j.as[Person]
} yield p
println(r)
答案 0 :(得分:4)
是的,但是您需要circe-generic-extras:
import io.circe.Decoder
import io.circe.generic.extras.Configuration
import io.circe.generic.extras.semiauto.deriveDecoder
case class Person(
id: Option[Int] = None,
name: String,
isActive: Boolean = true
)
object Person {
implicit val personConfig: Configuration =
Configuration.default.withDefaults
implicit val personJsonDecoder: Decoder[Person] = deriveDecoder
}
然后:
scala> io.circe.jawn.decode[Person]("""{"name": "Geovanny Junio"}""")
res0: Either[io.circe.Error,Person] = Right(Person(None,Geovanny Junio,true))
我一直打算将此功能添加到circe-derivation中,但是还没有时间,所以circe-generic-extras是目前使其工作的唯一方法(没有编写自己的解码器)。 / p>