Update JacksonConfig.java

This commit is contained in:
macro
2024-05-06 15:11:15 +08:00
parent fb4c49d917
commit 6db39ffe09

View File

@@ -22,9 +22,9 @@ public class JacksonConfig {
public ObjectMapper jacksonObjectMapper(Jackson2ObjectMapperBuilder builder) {
ObjectMapper objectMapper = builder.createXmlMapper(false).build();
// 通过该方法对mapper对象进行设置所有序列化的对象都将按该规则进行系列化
// Include.ALWAYS 默认
// Include.ALWAYS 所有属性都序列化(默认
// Include.NON_DEFAULT 属性为默认值不序列化
// Include.NON_EMPTY 属性为空(""或者为NULL都不序列化返回的json是没有这个字段的
// Include.NON_EMPTY 属性为空(""或者为NULL都不序列化
// Include.NON_NULL 属性为NULL的字段不序列化
objectMapper.setSerializationInclusion(JsonInclude.Include.NON_NULL);
return objectMapper;