其他分享
首页 > 其他分享> > fastjson toJSON和toJSONString 时null不传的解决方式

fastjson toJSON和toJSONString 时null不传的解决方式

作者:互联网

toJSON时无法将null放进JSONObject的处理方式
SerializeConfig serializeConfig=new SerializeConfig();
serializeConfig.config(AnswerRuleCollections.class, SerializerFeature.WriteMapNullValue,true);
JSON.toJSON(cleanDataOrSynonym,serializeConfig)

toJSONString时无法将null放进String的处理方式
JSON.toJSONString(sourceObject, SerializerFeature.WriteMapNullValue)

标签:fastjson,SerializerFeature,toJSON,不传,serializeConfig,WriteMapNullValue,toJSONStr
来源: https://blog.csdn.net/maqinchaoTnT/article/details/97950466