我想知道考虑到反序列化错误,从第三方服务解析JSON的可接受方法是什么。
例如,这种服务方法:
def signInWithEmailAndPassword(email: String, password: String): Future[ApiResponse[SignInResponse]] =
request("/signin").post(Json.obj("email" -> email, "password" -> password))
.map(_.json.as[ApiResponse[SignInResponse]])
如果json.as
失败将抛出一个服务器异常,哪个play将在默认错误处理程序中捕获。
这是客户端的正常结构吗?看起来像JSON解析错误无论如何都不是真的可以恢复,所以使用通用错误处理程序是否合适?
假设ApiResponse
将保留任何客户端错误(错误的密码等)并且Future
将保留服务器错误(无法建立连接,500来自远程服务等),那么是的,它适用于Future
中的异常冒泡到错误处理程序并将500返回给调用者(也假设在返回之前没有需要清理的资源)。
以下是一些帮助您入门的示例。这是您通常在Play框架控制器中编写的方法。
def dispatchPowerPlant(id: Int) = Action.async(parse.tolerantJson) { request =>
request.body.validate[DispatchCommand].fold(
errors => {
Future.successful{
BadRequest(
Json.obj("status" -> "error", "message" -> JsError.toJson(errors))
)
}
},
dispatchCommand => {
actorFor(id) flatMap {
case None =>
Future.successful {
NotFound(s"HTTP 404 :: PowerPlant with ID $id not found")
}
case Some(actorRef) =>
sendCommand(actorRef, id, dispatchCommand)
}
}
)
}
那么它的作用是检查JSON有效负载的有效性并相应地发送响应!希望这可以帮助!
您可能有类似的设置来验证JSON并相应地返回响应。