Commit bbbb18b5 authored by macro's avatar macro
Browse files

Update JacksonConfig.java

parent fed52731
......@@ -23,9 +23,9 @@ public class JacksonConfig {
ObjectMapper objectMapper = builder.createXmlMapper(false).build();
// 通过该方法对mapper对象进行设置,所有序列化的对象都将按该规则进行系列化
// Include.Include.ALWAYS 默认
// Include.ALWAYS 默认
// Include.NON_DEFAULT 属性为默认值不序列化
// Include.NON_EMPTY 属性为空("")或者为NULL都不序列化,返回的json是没有这个字段的
// Include.NON_EMPTY 属性为空("")或者为NULL都不序列化,返回的json是没有这个字段的
// Include.NON_NULL 属性为NULL的字段不序列化
objectMapper.setSerializationInclusion(JsonInclude.Include.NON_NULL);
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment