【bug】Could not write JSON 访问接口报错 代码没有报错

项目场景:

在前端请求接口的时候,报了问题描述中的问题。经过反复排除,因为其他response没有出现这个问题,所以我就把问题定位在response中,最终把目标定位在了这个分页集合的属性上。
response

 	/**
     * 分页集合
     */
    private List> pageList;

问题描述:

{
  "timestamp": "2021-12-20T01:26:12.907+0000",
  "status": 500,
  "error": "Internal Server Error",
  "message": "Could not write JSON: Class com.ai.gaimops.log.pojo.entity.Indicatrix not subtype of [map type; class java.util.Map, [simple type, class java.lang.String] -> [simple type, class java.lang.String]]; nested exception is com.fasterxml.jackson.databind.JsonMappingException: Class com.ai.gaimops.log.pojo.entity.Indicatrix not subtype of [map type; class java.util.Map, [simple type, class java.lang.String] -> [simple type, class java.lang.String]] (through reference chain: com.ai.gaimops.log.pojo.response.IndicatrixResponse[\"pageList\"]->com.github.pagehelper.Page[0])",
  "path": "/log/insicatrix/getList"
}

原因分析:

因为报的是json的问题,同时又只有这个属性有返回的时候,才报这个问题,所以很有可能是json里面不能有List吧,于是我就试一下


解决方案:

我就把List< Map>改成了List< Object>

	/**
     * 分页集合
     */
    private Object pageList;

结果就成功了,这个问题感觉不是很常见,也是浪费了我半个小时的时间。

你可能感兴趣的:(json,java,http)