我正在使用Play-Json 2.6.3 WithDefaultValues
,如下所示
implicit def jsonFormatFoo = Json.using[Json.WithDefaultValues].format[Foo]
implicit def jsonFormatBar = Json.using[Json.WithDefaultValues].format[Bar]
但是它给:带来了意外的行为
case class Bar(name:String)
case class Foo(bars: List[Bars] = List.empty)
现在可以了
val result = Json.parse("""{"bars":[{"name":null}]}""").validate[Foo]
println(result)
我得到JsSuccess(Foo(List()),)
。我期望JsError(List((/bars(0)/name,List(JsonValidationError(List(error.expected.jsstring),WrappedArray())))))
仅在删除默认的List.empty
后才会出现。
如果我有默认值,为什么将JsError转换为默认值的JsSuccess?它有点不直观。我该如何解决?
答案 0 :(得分:2)
从Play-JSON 2.6.8开始版本有一些更改。如果您切换到更高版本,则它应该开始抱怨Bar的null
值:
libraryDependencies += "com.typesafe.play" %% "play-json" % "2.6.8"
@ import play.api.libs.json._
import play.api.libs.json._
@ case class Bar(name:String)
defined class Bar
@ case class Foo(bars: List[Bar] = List.empty)
defined class Foo
@ implicit def jsonFormatBar = Json.using[Json.WithDefaultValues].format[Bar]
defined function jsonFormatBar
@ implicit def jsonFormatFoo = Json.using[Json.WithDefaultValues].format[Foo]
defined function jsonFormatFoo
@ Json.parse("""{"bars":[{"name":null}]}""").validate[Foo]
res6: JsResult[Foo] = JsError(List((JsPath(List(KeyPathNode("bars"), IdxPathNode(0), KeyPathNode("name"))), List(JsonValidationError(List("error.expected.jsstring"), WrappedArray())))))