溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

SpringBoot項(xiàng)目中如何處理返回json的null值

發(fā)布時(shí)間:2021-08-23 10:45:57 來源:億速云 閱讀:278 作者:小新 欄目:編程語言

這篇文章將為大家詳細(xì)講解有關(guān)SpringBoot項(xiàng)目中如何處理返回json的null值,小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。

在后端數(shù)據(jù)接口項(xiàng)目開發(fā)中,經(jīng)常遇到返回的數(shù)據(jù)中有null值,導(dǎo)致前端需要進(jìn)行判斷處理,否則容易出現(xiàn)undefined的情況,如何便捷的將null值轉(zhuǎn)換為空字符串?

以SpringBoot項(xiàng)目為例,SSM同理。

1、新建配置類(JsonConfig.java)

import com.fasterxml.jackson.core.JsonGenerator;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.JsonSerializer;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.databind.SerializerProvider;
import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Primary;
import org.springframework.http.converter.json.Jackson2ObjectMapperBuilder;
import java.io.IOException;
@Configuration
public class JsonConfig {
 @Bean
 @Primary
 @ConditionalOnMissingBean(ObjectMapper.class)
 public ObjectMapper jacksonObjectMapper(Jackson2ObjectMapperBuilder builder)
 {
  ObjectMapper objectMapper = builder.createXmlMapper(false).build();
  // 通過該方法對(duì)mapper對(duì)象進(jìn)行設(shè)置,所有序列化的對(duì)象都將按改規(guī)則進(jìn)行系列化
  // Include.Include.ALWAYS 默認(rèn)
  // Include.NON_DEFAULT 屬性為默認(rèn)值不序列化
  // Include.NON_EMPTY 屬性為 空("") 或者為 NULL 都不序列化,則返回的json是沒有這個(gè)字段的。這樣對(duì)移動(dòng)端會(huì)更省流量
  // Include.NON_NULL 屬性為NULL 不序列化,就是為null的字段不參加序列化
  //objectMapper.setSerializationInclusion(Include.NON_EMPTY);
  // 字段保留,將null值轉(zhuǎn)為""
  objectMapper.getSerializerProvider().setNullValueSerializer(new JsonSerializer<Object>()
  {
   @Override
   public void serialize(Object o, JsonGenerator jsonGenerator,
         SerializerProvider serializerProvider)
     throws IOException, JsonProcessingException
   {
    jsonGenerator.writeString("");
   }
  });
  return objectMapper;
 }
}

2、在啟動(dòng)類Application中,記得添加Scan注解,防止無法掃描到配置類。

ps:下面看下spring boot 使用 json 響應(yīng)時(shí)去除 null 的字段

import java.io.Serializable;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonInclude.Include;
public class RespObject implements Serializable {
  private static final long serialVersionUID = -1560603887556641494L;
  ....
  @JsonInclude(Include.NON_NULL)
  public Object respMsg;
  @JsonInclude(Include.NON_NULL)
  public Object respData;
  ....
}

關(guān)于“SpringBoot項(xiàng)目中如何處理返回json的null值”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,使各位可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),請(qǐng)把它分享出去讓更多的人看到。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI