Hello你們好,本章咱們添加自定義消息轉換器。有問題能夠聯繫我mr_beany@163.com。另求各路大神指點,感謝
不知道你們有沒有遇到過這種狀況:後臺接口返回一個實例,當你須要使用某個屬性的值時,你還要判斷一下值是否爲null;接口返回一堆屬性值爲null的屬性等java
ok,消息轉換器能夠幫你解決這個問題git
打開pom.xml,找到<dependencies></dependencies>
標籤,在標籤中添加fastjson依賴github
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>1.2.22</version>
</dependency>複製代碼
而後鼠標右鍵選擇Maven→Reimport進行依賴下載
web
在文件夾configurer中建立WebConfigurerspring
package com.example.demo.core.configurer;
import com.alibaba.fastjson.serializer.SerializerFeature;
import com.alibaba.fastjson.support.config.FastJsonConfig;
import com.alibaba.fastjson.support.spring.FastJsonHttpMessageConverter4;
import org.springframework.context.annotation.Configuration;
import org.springframework.http.MediaType;
import org.springframework.http.converter.HttpMessageConverter;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport;
import java.nio.charset.Charset;
import java.util.ArrayList;
import java.util.List;
/**
* @author 張瑤
* @Description:
* @time 2018/4/19 10:42
*/
@Configuration
public class WebConfigurer extends WebMvcConfigurationSupport {
/**
* 修改自定義消息轉換器
* @param converters
*/
@Override
public void configureMessageConverters(List<HttpMessageConverter<?>> converters) {
FastJsonHttpMessageConverter4 converter = new FastJsonHttpMessageConverter4();
converter.setSupportedMediaTypes(getSupportedMediaTypes());
FastJsonConfig config = new FastJsonConfig();
config.setSerializerFeatures(
// String null -> ""
SerializerFeature.WriteNullStringAsEmpty,
// Number null -> 0
SerializerFeature.WriteNullNumberAsZero,
//禁止循環引用
SerializerFeature.DisableCircularReferenceDetect
);
converter.setFastJsonConfig(config);
converter.setDefaultCharset(Charset.forName("UTF-8"));
converters.add(converter);
}
private List<MediaType> getSupportedMediaTypes() {
List<MediaType> supportedMediaTypes = new ArrayList<>();
supportedMediaTypes.add(MediaType.APPLICATION_JSON);
supportedMediaTypes.add(MediaType.APPLICATION_JSON_UTF8);
supportedMediaTypes.add(MediaType.APPLICATION_ATOM_XML);
supportedMediaTypes.add(MediaType.APPLICATION_FORM_URLENCODED);
supportedMediaTypes.add(MediaType.APPLICATION_OCTET_STREAM);
supportedMediaTypes.add(MediaType.APPLICATION_PDF);
supportedMediaTypes.add(MediaType.APPLICATION_RSS_XML);
supportedMediaTypes.add(MediaType.APPLICATION_XHTML_XML);
supportedMediaTypes.add(MediaType.APPLICATION_XML);
supportedMediaTypes.add(MediaType.IMAGE_GIF);
supportedMediaTypes.add(MediaType.IMAGE_JPEG);
supportedMediaTypes.add(MediaType.IMAGE_PNG);
supportedMediaTypes.add(MediaType.TEXT_EVENT_STREAM);
supportedMediaTypes.add(MediaType.TEXT_HTML);
supportedMediaTypes.add(MediaType.TEXT_MARKDOWN);
supportedMediaTypes.add(MediaType.TEXT_PLAIN);
supportedMediaTypes.add(MediaType.TEXT_XML);
return supportedMediaTypes;
}
}複製代碼
其中數據庫
config.setSerializerFeatures()複製代碼
方法中能夠添加多個配置,如下列舉出幾個經常使用配置,更多配置請自行百度json
WriteNullListAsEmpty :List字段若是爲null,輸出爲[],而非null
WriteNullStringAsEmpty : 字符類型字段若是爲null,輸出爲"",而非null
DisableCircularReferenceDetect :消除對同一對象循環引用的問題,默認爲false(若是不配置有可能會進入死循環)
WriteNullBooleanAsFalse:Boolean字段若是爲null,輸出爲false,而非null
WriteMapNullValue:是否輸出值爲null的字段,默認爲false複製代碼
INSERT INTO `user_info` VALUES ('1', '1');
INSERT INTO `user_info` VALUES ('2', null);複製代碼
查詢條件id爲2springboot
未配置轉換器時,查詢結果爲bash
{
"code": 200,
"msg": "success",
"data": {
"id": 2,
"userName": null
}
}複製代碼
配置轉換器以後,查詢結果爲
ide
{
"code": 200,
"data": {
"id": 2,
"userName": "" //這裏已經變爲"",而不是null
},
"msg": "success"
}複製代碼
碼雲地址: gitee.com/beany/mySpr…
GitHub地址: github.com/MyBeany/myS…
寫文章不易,如對您有幫助,請幫忙點下star
springboot添加自定義消息轉換器已完成,後續功能接下來陸續更新,有問題能夠聯繫我mr_beany@163.com。另求各路大神指點,感謝你們。