springboot返回值转成JSONString的处理方式
目录
- 返回值转成JSONString的处理
- 主要需求描述
- 解决方法
- JSON.toJSONString
- 使用前提
- 使用
返回值转成JSONString的处理
主要需求描述
有些返回值中的null需要转换成“”或[],另外有些返回值需要把null给屏蔽掉。
【springboot返回值转成JSONString的处理方式】
解决方法
一(很lowb)
所有的返回值均采用string,在返回值之前,自己特殊处理成JSONString,然后返回给前端即可。
二(比较正统)
通过配置FastJsonConfig,配置类如下:
@Configurationpublic class WebConfig extends WebMvcConfigurerAdapter {@Overridepublic void configureMessageConverters(List> converters) {super.configureMessageConverters(converters); //1.定义一个convert转换消息对象FastJsonHttpMessageConverter fastConverter = new FastJsonHttpMessageConverter(); //2.添加fastjson的配置信息,比如:是否要格式化返回json数据FastJsonConfig fastJsonConfig = new FastJsonConfig(); fastJsonConfig.setSerializerFeatures(SerializerFeature.PrettyFormat,SerializerFeature.WriteNullStringAsEmpty,SerializerFeature.DisableCircularReferenceDetect,SerializerFeature.WriteNullListAsEmpty); PropertyFilter propertyFilter = new PropertyFilter() {@Overridepublic boolean apply(Object object, String name, Object value) {if (object instanceof MessageFor841 && value =https://www.it610.com/article/= null) {return false; }return true; }}; fastJsonConfig.setSerializeFilters(propertyFilter); fastConverter.setFastJsonConfig(fastJsonConfig); converters.add(fastConverter); }}
这里解释一下PropertyFilter类中的apply方法,
首先3个参数:
object
:可以理解成需要转成json的对象name
:字段名(属性名)value
:字段值(属性值)
这里类型为MessageFor841且它的属性字段为null时返回false,表示此字段过滤掉。
其他类型null字段转成""或[]
JSON.toJSONString 后端想将HashMap类型数据返回成json字符串
即导入并使用JSON.toJSONString
使用前提
pom.xml
com.alibaba fastjson1.2.28
使用页需自己写入下列语句,否则无法自行导入
import com.alibaba.fastjson.JSON;
使用
HashMap data = https://www.it610.com/article/new HashMap<>(); ListmainMenus = menuDao.getMainMenus(); data.put("data",mainMenus); data.put("status",200); String data_json = JSON.toJSONString(data); System.out.println("成功访问!!!"); return data_json;
以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。
推荐阅读
- 025.封装请求和返回参数
- 024.统一的后端返回值(CommonResp)
- 餐饮|揭开海底捞分拆上市疑团,究竟有多大投资价值?
- mysql|SpringBoot + MyBatis + MySQL 实现读写分离
- SqlServer入门到精通|SQL实现将数据表中的字段中的值按分隔符分成多列
- 我们发明了价值,却又被价值所奴役
- SpringBoot|SpringBoot 热搜与不雅文字过滤的实现
- C/C++|C/C++ 引用作为函数的返回值方式
- springboot|springboot 中如何正确在异步线程中使用request
- “价值”才是稳定关系的基石