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)

上一篇:springboot整合web开发


下一篇:SpringBoot升级版本导致@JsonIgnore失效问题