Update JacksonConfig.java

This commit is contained in:
macro
2024-06-11 15:46:29 +08:00
parent ea6f1c1429
commit 70a226f408

View File

@@ -21,7 +21,7 @@ public class JacksonConfig {
@ConditionalOnMissingBean(ObjectMapper.class) @ConditionalOnMissingBean(ObjectMapper.class)
public ObjectMapper jacksonObjectMapper(Jackson2ObjectMapperBuilder builder) { public ObjectMapper jacksonObjectMapper(Jackson2ObjectMapperBuilder builder) {
ObjectMapper objectMapper = builder.createXmlMapper(false).build(); ObjectMapper objectMapper = builder.createXmlMapper(false).build();
// 通过该方法对mapper对象进行设置所有序列化的对象都将按该规则进行列化 // 通过该方法对mapper对象进行设置所有序列化的对象都将按该规则进行列化
// Include.ALWAYS 所有属性都序列化(默认) // Include.ALWAYS 所有属性都序列化(默认)
// Include.NON_DEFAULT 属性为默认值不序列化 // Include.NON_DEFAULT 属性为默认值不序列化
// Include.NON_EMPTY 属性为空(""或者为NULL都不序列化 // Include.NON_EMPTY 属性为空(""或者为NULL都不序列化