其他分享
首页 > 其他分享> > mybaits-plus json 的List<某obj>转换报错:com.alibaba.fastjson.JSONException: syntax error, expect {,

mybaits-plus json 的List<某obj>转换报错:com.alibaba.fastjson.JSONException: syntax error, expect {,

作者:互联网

    com.alibaba.fastjson.JSONException: syntax error, expect {, actual true, pos 1, fastjson-version 1.2.73


@TableField(typeHandler = FastjsonTypeHandler.class):JSON自动转换只针对List<String> List<Integer> ...

解决:

    public List<Di> getDi() {
        return di!=null? JSONArray.parseArray(di.toString(),Di.class):null;
    }

里面某obj 

    @Override
    public String toString() {
        return JSONObject.toJSONString(this);
    }

 

标签:fastjson,actual,1.2,List,pos,syntax,toString,报错
来源: https://www.cnblogs.com/tk55/p/15735267.html