首頁 > 軟體

使用JSON.toJSONString格式化成json字串時保留null屬性

2022-06-18 14:01:56

JSON.toJSONString格式化成json字串時保留null屬性

使用阿里的

com.alibaba.fastjson.JSON

格式化時,預設null屬性會被過濾掉,可以設定不過濾null

public static String parseScriptJsonStringWithNullValue(Object obj) { 
   if (obj == null || (obj instanceof Undefined)) { 
      return null; 
   } 
   return JSON.toJSONString(obj, new SerializeFilter[]{scriptArrayFilter}, SerializerFeature.WriteMapNullValue); 
}

指定這個引數即可

SerializerFeature.WriteMapNullValue

屬性說明

QuoteFieldNames———輸出key時是否使用雙引號,預設為true

WriteMapNullValue———是否輸出值為null的欄位,預設為false

WriteNullNumberAsZero———數值欄位如果為null,輸出為0,而非null

WriteNullListAsEmpty———List欄位如果為null,輸出為[],而非null

WriteNullStringAsEmpty———字元型別欄位如果為null,輸出為”“,而非null

WriteNullBooleanAsFalse———Boolean欄位如果為null,輸出為false,而非null

例子

String ret = JSON.toJSONStringWithDateFormat(returnValue, "yyyy-MM-dd HH:mm:ss",
                SerializerFeature.PrettyFormat,
                    // 保留map空的欄位
                    SerializerFeature.WriteMapNullValue,
                    // 將String型別的null轉成""
                    SerializerFeature.WriteNullStringAsEmpty,
                    // 將Number型別的null轉成0
                    SerializerFeature.WriteNullNumberAsZero,
                    // 將List型別的null轉成[]
                    SerializerFeature.WriteNullListAsEmpty,
                    // 將Boolean型別的null轉成false
                    SerializerFeature.WriteNullBooleanAsFalse,
                    // 避免迴圈參照
                    SerializerFeature.DisableCircularReferenceDetect
                );

處理返回結果中欄位為空或為null,不展示欄位的問題(欄位展示不全)

package com.aiqin.mgs.market.api.config; 
import com.alibaba.fastjson.serializer.SerializerFeature;
import com.alibaba.fastjson.support.config.FastJsonConfig;
import com.alibaba.fastjson.support.spring.FastJsonHttpMessageConverter;
import org.springframework.context.annotation.Configuration;
import org.springframework.http.MediaType;
import org.springframework.http.converter.HttpMessageConverter;
import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport;
 
import java.nio.charset.Charset;
import java.util.ArrayList;
import java.util.List;
 
/**
 * description: fastjson處理返回的引數為null、或者不返回
 * date: 2019/11/22 15:03
 * author: hantao
 * version: 1.0
 * springboot 處理返回結果中欄位為空或為null,不展示欄位的問題(欄位展示不全)
 */
@Configuration
public class FastJsonConfiguration extends WebMvcConfigurationSupport {
 
    /**
     * 使用阿里 fastjson 作為JSON MessageConverter
     * @param converters
     */
    @Override
    public void configureMessageConverters(List<HttpMessageConverter<?>> converters) {
        FastJsonHttpMessageConverter converter = new FastJsonHttpMessageConverter();
        FastJsonConfig config = new FastJsonConfig();
        config.setSerializerFeatures(
                // 保留map空的欄位
                SerializerFeature.WriteMapNullValue,
                // 將String型別的null轉成""
                SerializerFeature.WriteNullStringAsEmpty,
                // 將Number型別的null轉成0
                SerializerFeature.WriteNullNumberAsZero,
                // 將List型別的null轉成[]
                SerializerFeature.WriteNullListAsEmpty,
                // 將Boolean型別的null轉成false
                SerializerFeature.WriteNullBooleanAsFalse,
                // 避免迴圈參照
                SerializerFeature.DisableCircularReferenceDetect);
 
        converter.setFastJsonConfig(config);
        converter.setDefaultCharset(Charset.forName("UTF-8"));
        List<MediaType> mediaTypeList = new ArrayList<>();
        // 解決中文亂碼問題,相當於在Controller上的@RequestMapping中加了個屬性produces = "application/json"
        mediaTypeList.add(MediaType.APPLICATION_JSON);
        converter.setSupportedMediaTypes(mediaTypeList);
        converters.add(converter);
    }
 
    /**
     * 整合了swagger需要設定swagger攔截
     * @param registry
     */
    @Override
    public void addResourceHandlers(ResourceHandlerRegistry registry) {
        registry.addResourceHandler("swagger-ui.html","index.html").addResourceLocations("classpath:/META-INF/resources/");
        registry.addResourceHandler("doc.html").addResourceLocations("classpath:/META-INF/resources/");
        registry.addResourceHandler("/webjars/**").addResourceLocations("classpath:/META-INF/resources/webjars/");
        registry.addResourceHandler("/static/**").addResourceLocations("classpath:/META-INF/resources/static/");
    } 
}

以上為個人經驗,希望能給大家一個參考,也希望大家多多支援it145.com。


IT145.com E-mail:sddin#qq.com