有时候我们在传json的时候需要过滤掉那些数据为空的参数,我们可以这样:
JsonUtil.object2JSON(request, SerializerFeature.WriteDateUseDateFormat);
当然,也可以这样:
JSON.toJSONString(request)
这两种方式都需要添加阿里的jar包
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>1.2.4</version>
</dependency>