json返回处理 博客分类: json返回处理
程序员文章站
2024-03-18 20:46:28
...
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.databind.ObjectMapper;
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;
/**
* Jackson配置类
* json不返回null的字段
* Created by macro on 2018/8/2.
*/
@Configuration
public class JacksonConfig {
@Bean
@Primary
@ConditionalOnMissingBean(ObjectMapper.class)
public ObjectMapper jacksonObjectMapper(Jackson2ObjectMapperBuilder builder) {
ObjectMapper objectMapper = builder.createXmlMapper(false).build();
// 通过该方法对mapper对象进行设置,所有序列化的对象都将按改规则进行系列化
// Include.Include.ALWAYS 默认
// Include.NON_DEFAULT 属性为默认值不序列化
// Include.NON_EMPTY 属性为 空("") 或者为 NULL 都不序列化,则返回的json是没有这个字段的。这样对移动端会更省流量
// Include.NON_NULL 属性为NULL 不序列化,就是为null的字段不参加序列化
objectMapper.setSerializationInclusion(JsonInclude.Include.NON_NULL);
// 字段保留,将null值转为""
// objectMapper.getSerializerProvider().setNullValueSerializer(new JsonSerializer<Object>()
// {
// @Override
// public void serialize(Object o, JsonGenerator jsonGenerator,
// SerializerProvider serializerProvider)
// throws IOException, JsonProcessingException
// {
// jsonGenerator.writeString("");
// }
// });
return objectMapper;
}
}
上一篇: 以太坊叔块 博客分类: 以太坊
下一篇: 以太坊区块 博客分类: 以太坊
推荐阅读
-
json返回处理 博客分类: json返回处理
-
【转】Hibernate SQLQuery 原生SQL 查询及返回结果集处理 博客分类: Hibernate 官方文档的处理方法,摘自官方
-
FastJson API接口消息返回JSON数据 博客分类: JAVA APIFastJson
-
C# web api返回类型设置为json的两种方法 博客分类: web API api
-
json_lib处理null字符串bug 博客分类: java
-
解决SpringMVC 返回Java8 时间JSON数据的格式化问题处理
-
使用ASP.NET一般处理程序或WebService返回JSON的实现代码
-
解决SpringMVC 返回Java8 时间JSON数据的格式化问题处理
-
使用ASP.NET一般处理程序或WebService返回JSON的实现代码
-
spring MVC 返回json 博客分类: Java WebJavaspring MVC springMVCspring mvcjson返回json应答json