# SpringBootStudy **Repository Path**: dsjbcai/SpringBootStudy ## Basic Information - **Project Name**: SpringBootStudy - **Description**: Spring Boot 2.0 学习 - **Primary Language**: Java - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2018-06-05 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README 备注信息 1.SpringBoot 2.0中 WebMvcConfigurerAdapter已过时,推荐使用 WebMvcConfigurationSupport 2.FastJson SerializerFeatures WriteNullListAsEmpty  :List字段如果为null,输出为[],而非null WriteNullStringAsEmpty : 字符类型字段如果为null,输出为"",而非null DisableCircularReferenceDetect :消除对同一对象循环引用的问题,默认为false(如果不配置有可能会进入死循环) WriteNullBooleanAsFalse:Boolean字段如果为null,输出为false,而非null WriteMapNullValue:是否输出值为null的字段,默认为false。