分类

链接

2022 年 11 月
 123456
78910111213
14151617181920
21222324252627
282930  

近期文章

热门标签

新人福利,免费薅羊毛

现在位置:    首页 > JAVA > 正文
共享办公室出租
JACKSON和FASTJSON处理返回JSON数据中为NULL字段不显示
JAVA 暂无评论 阅读(154)

JACKSON

1.实体上

将此注解放在属性上,如果该属性为null则不参与序列化(为null的字段不显示)

如果放在类上边,那对这个类的全部属性起作用,展示所有字段。

@JsonInclude(JsonInclude.Include.ALWAYS)   //放在类上,展示所有字段

Include.Include.ALWAYS 默认展示所有字段
Include.NON_DEFAULT 属性为默认值不序列化
Include.NON_EMPTY 属性为 空("") 或者为 NULL 都不序列化
Include.NON_NULL 属性为NULL 不序列化

 

FASTJSON

 

  1.  
  2. package com.aiqin.bms.slcs.api.config;
  3.  
  4.  
  5.  
  6. import com.alibaba.fastjson.serializer.SerializerFeature;
  7.  
  8. import com.alibaba.fastjson.support.config.FastJsonConfig;
  9.  
  10. import com.alibaba.fastjson.support.spring.FastJsonHttpMessageConverter;
  11.  
  12. import org.springframework.context.annotation.Configuration;
  13.  
  14. import org.springframework.http.MediaType;
  15.  
  16. import org.springframework.http.converter.HttpMessageConverter;
  17.  
  18. import org.springframework.web.servlet.config.annotation.CorsRegistry;
  19.  
  20. import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry;
  21.  
  22. import org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport;
  23.  
  24.  
  25.  
  26. import java.nio.charset.Charset;
  27.  
  28. import java.util.ArrayList;
  29.  
  30. import java.util.List;
  31.  
  32.  
  33.  
  34. /**
  35.  * description: fastjson处理返回的参数为null、或者不返回
  36.  * date: 2020/03/06 15:03
  37.  * version: 1.0
  38.  * springboot 处理返回结果中字段为空或为null,不展示字段的问题(字段展示不全)
  39.  */
  40.  
  41. @Configuration
  42.  
  43. public class FastJsonConfiguration extends WebMvcConfigurationSupport {
  44.  
  45.  
  46.  
  47.     /**
  48.      * 使用阿里 fastjson 作为JSON MessageConverter
  49.      * @param converters
  50.      */
  51.  
  52.     @Override
  53.  
  54.     public void configureMessageConverters(List<HttpMessageConverter<?>> converters) {
  55.  
  56.         FastJsonHttpMessageConverter converter = new FastJsonHttpMessageConverter();
  57.  
  58.         FastJsonConfig config = new FastJsonConfig();
  59.  
  60.         config.setSerializerFeatures(
  61.  
  62.                 //全局修改日期格式,如果时间是data、时间戳类型,按照这种格式初始化时间 "yyyy-MM-dd HH:mm:ss"
  63.  
  64.                 SerializerFeature.WriteDateUseDateFormat,
  65.  
  66.                 // 保留map空的字段
  67.  
  68.                 SerializerFeature.WriteMapNullValue,
  69.  
  70.                 // 将String类型的null转成""
  71.  
  72.                 SerializerFeature.WriteNullStringAsEmpty,
  73.  
  74.                 // 将Number类型的null转成0
  75.  
  76.                 SerializerFeature.WriteNullNumberAsZero,
  77.  
  78.                 // 将List类型的null转成[]
  79.  
  80.                 SerializerFeature.WriteNullListAsEmpty,
  81.  
  82.                 // 将Boolean类型的null转成false
  83.  
  84.                 SerializerFeature.WriteNullBooleanAsFalse,
  85.  
  86.                 // 避免循环引用
  87.  
  88.                 SerializerFeature.DisableCircularReferenceDetect);
  89.  
  90.  
  91.  
  92.         converter.setFastJsonConfig(config);
  93.  
  94.         converter.setDefaultCharset(Charset.forName("UTF-8"));
  95.  
  96.         List<MediaType> mediaTypeList = new ArrayList<>();
  97.  
  98.         // 解决中文乱码问题,相当于在Controller上的@RequestMapping中加了个属性produces = "application/json"
  99.  
  100.         mediaTypeList.add(MediaType.APPLICATION_JSON);
  101.  
  102.         converter.setSupportedMediaTypes(mediaTypeList);
  103.  
  104.         converters.add(converter);
  105.  
  106.     }
  107.  
  108.  
  109.  
  110. //    /**
  111.  
  112. //     * 整合了swagger需要配置swagger拦截
  113.  
  114. //     * @param registry
  115.  
  116. //     */
  117.  
  118. //    @Override
  119.  
  120. //    public void addResourceHandlers(ResourceHandlerRegistry registry) {
  121.  
  122. //        registry.addResourceHandler("swagger-ui.html","index.html").addResourceLocations("classpath:/META-INF/resources/");
  123.  
  124. //        registry.addResourceHandler("doc.html").addResourceLocations("classpath:/META-INF/resources/");
  125.  
  126. //        registry.addResourceHandler("/webjars/**").addResourceLocations("classpath:/META-INF/resources/webjars/");
  127.  
  128. //        registry.addResourceHandler("/static/**").addResourceLocations("classpath:/META-INF/resources/static/");
  129.  
  130. //    }
  131.  
  132. //
  133.  
  134. //
  135.  
  136. //    @Override
  137.  
  138. //    public void addCorsMappings(CorsRegistry registry) {
  139.  
  140. //        registry.addMapping("/**")
  141.  
  142. //                .allowedOrigins("*")
  143.  
  144. //                .allowCredentials(true)
  145.  
  146. //                .allowedMethods("GET", "POST", "PUT", "DELETE", "OPTIONS")
  147.  
  148. //                .maxAge(3600);
  149.  
  150. //    }
  151.  
  152.  
  153.  
  154. }
  155.  

============ 欢迎各位老板打赏~ ===========

本文版权归Bruce's Blog所有,转载引用请完整注明以下信息:
本文作者:Bruce
本文地址:JACKSON和FASTJSON处理返回JSON数据中为NULL字段不显示 | Bruce's Blog

发表评论

留言无头像?