0
我有這樣的JSON:播放框架斯卡拉JSON驗證空指針異常
{"arguments":["test"]}
我試圖解析它是這樣的:
implicit val argumentReads: Reads[List[String]] = (JsPath \ "arguments").read[List[String]]
json.validate[List[String]](argumentReads)
,這將導致空指針異常錯誤。 我做錯了什麼?
添加異常的詳細信息並打印'json'的值 – cchantep