使用fastjson需要注意的事项

       最近在测试举报项目的单聊和群聊时,出现了"$ref": "$.data.reportContent[0].feedInfo"这样的数据,之所以出现这样的问题是因为fastjson的JSON.toJSONString默认开启了"循环引用检测"特性,加载完第一个feedInfo对象后,当加载第二个feedInfo对象时fastjson检测到已经加载过该对象一次了,因此不再重复加载改数据,而只是将一个指向第一个feedInfo对象的地址赋给后面的对象,从而出现了我们看到的下面所示的数据形式。

{
    "data": {
        "handleDetail": {
            
        },
        "handleFeedId": "",
        "handleReason": "",
        "handleTime": 0,
        "hasHandled": 0,
        "illegalType": "0",
        "pics": [
            "http://scloud.toon.mobi/f/AIvQq8lwlGH4snhbwyu7Ndib5WbC-9AS4xAiApe+WUofG.jpg"
        ],
        "reasonId": "16",
        "reportContent": [
            {
                "contentOutput": {
                    "from": "c_1500459436330003",
                    "text": "不支持的文件类型",
                    "type": "nonsupport",
                    "url": "http://scloud.toon.mobi/f/0T-Org7zsW6A6+V9jKji2JxevaI8ixWW4ht4nZ6ArZcfG.jpg"
                },
                "feedInfo": {
                    "cardNo": "253607",
                    "feedId": "c_1500459436330003",
                    "title": "***"
                }
            },
            {
                "contentOutput": {
                    "from": "c_1500459436330003",
                    "text": "不支持的文件类型",
                    "type": "nonsupport"
                },
                "feedInfo": {
                    "$ref": "$.data.reportContent[0].feedInfo"
                }
            }
        ],
        "reportDesc": "",
        "reportId": "1157163647988614",
        "reportObject": "群聊",
        "reportPerson": [
            {
                "$ref": "$.data.reportContent[0].feedInfo"
            }
        ],
        "reportTime": 1516364798614,
        "toonType": "100",
        "type": 4
    },
    "meta": {
        "code": 0,
        "message": "success"
    }
}

为了避免这种现象发生,我们在使用JSON.toJSONString时需要人为关闭"循环引用检测"特性:

String data = JSON.toJSONString(result, SerializerFeature.DisableCircularReferenceDetect);
这样便可以解决该问题了。

猜你喜欢

转载自blog.csdn.net/u012453843/article/details/79196531