Could not write JSON: JsonObject; nested exception is com.fasterxml.jackson.databind.JsonMappingExce

 

一、错误标题:

Could not write JSON: JsonObject; nested exception is com.fasterxml.jackson.databind.JsonMappingException: JsonObject (through reference chain: com.dandan.response.AppResponseData[\"data\"]->com.google.gson.JsonObject[\"asString\"])

二、错误原文:

{
    "timestamp": "2019-05-07T12:08:43.435+0000",
    "status": 500,
    "error": "Internal Server Error",
    "message": "Could not write JSON: JsonObject; nested exception is com.fasterxml.jackson.databind.JsonMappingException: JsonObject (through reference chain: com.dandan.response.AppResponseData[\"data\"]->com.google.gson.JsonObject[\"asString\"])",
    "path": "/pay/createPayToken"
}

三、错误原图

PS:(来自PostMan接口测试工具截图)

四、错误解释:

译文:无法编写JSON: JsonObject;嵌套异常是com.fasterxml.jackson.databind.JsonMappingException: JsonObject(通过引用链:com.dandan.response.AppResponsedata [\"data\"]->com.google.gson.JsonObject[\"asString\"])
 

解释:意思其实没什么意思,就是无法编写JSON,或者说进行将返回值封装成JSON并返回这么个操作后报错。

com.fasterxml.jackson.databind.JsonMappingException:     这个是指报的错误,通过该错误百度很难找到符合的解决方案

那么看后面的提示语句:

JsonObject(通过引用链: com.dandan.response.AppResponsedata [\"data\"]->com.google.gson.JsonObject[\"asString\"])

这一串代表了错误来源,我这边是一个AppResponsedata类是一个接口返回数据封装类,该错误代表封装类去装载返回数据时报错。

返回时的封装代码:

return new AppResponseData(ResultCode.SUCCESS, jsonObject);

原因就出现在将返回数据封装成JSON时我们使用了

来源于com.google.gson.JsonObjec的JSONObject类对象,

JsonObject jsonObject = new JsonObject();
jsonObject.addProperty("key","value");

五、错误解决

实际上我们应该支持国产货,选择来源于Alibaba的JSONObject类 

附上全导包名:

import com.alibaba.fastjson.JSONObject;
JSONObject jsonObject = new JSONObject();
jsonObject.put("payToken", payToken);

通过该类封装数据为JSON并返回即可。

返回值为:

Could not write JSON: JsonObject; nested exception is com.fasterxml.jackson.databind.JsonMappingExce_第1张图片

六、末尾说明

关于一种错误,引发有多重形式,但如果错误前缀是:

Could not write JSON: JsonObject; nested exception is com.fasterxml.jackson.databind.JsonMappingException:

通常都是又封装JSON时引发的错误,细心检查,相信很快就能解决的呢!

 

你可能感兴趣的:(Java后端,BUG)