在實際項目中,咱們不免會遇到一些無值。當咱們轉JSON時,不但願這些null出現,好比咱們指望全部的null在轉JSON時都變成「」「」這種空字符串,那怎麼作呢?java
1 @Configuration 2 public class JacksonConfig { 3 @Bean 4 @Primary 5 @ConditionalOnMissingBean(ObjectMapper.class) 6 public ObjectMapper jacksonObjectMapper(Jackson2ObjectMapperBuilder builder) { 7 ObjectMapper objectMapper = builder.createXmlMapper(false).build(); 8 objectMapper.getSerializerProvider().setNullValueSerializer(new JsonSerializer<Object>() { 9 @Override 10 public void serialize(Object o, JsonGenerator jsonGenerator, SerializerProvider serializerProvider) throws IOException { 11 jsonGenerator.writeString(""); 12 } 13 }); 14 return objectMapper; 15 } 16 }
使用fastjson須要導入依賴(https://mvnrepository.com/search?q=fastjson)web
1 <dependency> 2 <groupId>com.alibaba</groupId> 3 <artifactId>fastjson</artifactId> 4 <version>1.2.58</version> 5 </dependency>
使用fastjson時,對null的處理和Jackson有些不一樣,須要繼承WebMvcConfigurationSupport類,而後覆蓋configureMessageConverters方法。在方法中,咱們能夠選擇要實現null轉換的場景,配置好便可。spring
1 import com.alibaba.fastjson.serializer.SerializerFeature; 2 import com.alibaba.fastjson.support.config.FastJsonConfig; 3 import com.alibaba.fastjson.support.spring.FastJsonHttpMessageConverter; 4 import org.springframework.context.annotation.Configuration; 5 import org.springframework.http.MediaType; 6 import org.springframework.http.converter.HttpMessageConverter; 7 import org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport; 8 9 import java.nio.charset.Charset; 10 import java.util.ArrayList; 11 import java.util.List; 12 13 @Configuration 14 public class fastJsonConfig extends WebMvcConfigurationSupport { 15 16 /** 17 * 使用阿里 fastjson 做爲 JSON MessageConverter 18 * @param converters 19 */ 20 @Override 21 public void configureMessageConverters(List<HttpMessageConverter<?>> converters) { 22 FastJsonHttpMessageConverter converter = new FastJsonHttpMessageConverter(); 23 FastJsonConfig config = new FastJsonConfig(); 24 config.setSerializerFeatures( 25 // 保留 Map 空的字段 26 SerializerFeature.WriteMapNullValue, 27 // 將 String 類型的 null 轉成"" 28 SerializerFeature.WriteNullStringAsEmpty, 29 // 將 Number 類型的 null 轉成 0 30 SerializerFeature.WriteNullNumberAsZero, 31 // 將 List 類型的 null 轉成 [] 32 SerializerFeature.WriteNullListAsEmpty, 33 // 將 Boolean 類型的 null 轉成 false 34 SerializerFeature.WriteNullBooleanAsFalse, 35 // 避免循環引用 36 SerializerFeature.DisableCircularReferenceDetect); 37 38 converter.setFastJsonConfig(config); 39 converter.setDefaultCharset(Charset.forName("UTF-8")); 40 List<MediaType> mediaTypeList = new ArrayList<>(); 41 // 解決中文亂碼問題,至關於在 Controller 上的 @RequestMapping 中加了個屬性 produces = "application/json" 42 mediaTypeList.add(MediaType.APPLICATION_JSON); 43 converter.setSupportedMediaTypes(mediaTypeList); 44 converters.add(converter); 45 } 46 }
選項 | FASTJSON | 傑克遜 |
---|---|---|
上手難易程度 | 容易 | 中等 |
高級特性支持 | 中等 | 豐富 |
官方文檔,示例支持 | 中文 | 英文 |
處理JSON速度 | 略快 | 快 |
關於Jackson和fastjson的對比,網上有不少資料能夠查看,你們能夠根據本身實際狀況選擇合適的框架。從擴展上來看,fastjson沒有Jackson靈活,從速度或者上手難度來看,fastjson能夠考慮,它也比較方便。json