博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
jackson 实体转json 为NULL或者为空不参加序列化
阅读量:4958 次
发布时间:2019-06-12

本文共 1388 字,大约阅读时间需要 4 分钟。

 

1.实体上

@JsonInclude(Include.NON_NULL) 

//将该标记放在属性上,如果该属性为NULL则不参与序列化 

//如果放在类上边,那对这个类的全部属性起作用 
//Include.Include.ALWAYS 默认 
//Include.NON_DEFAULT 属性为默认值不序列化 
//Include.NON_EMPTY 属性为 空(“”) 或者为 NULL 都不序列化 
//Include.NON_NULL 属性为NULL 不序列化 
2.代码上
ObjectMapper mapper = new ObjectMapper();

mapper.setSerializationInclusion(Include.NON_NULL);  

//通过该方法对mapper对象进行设置,所有序列化的对象都将按改规则进行系列化 

//Include.Include.ALWAYS 默认 
//Include.NON_DEFAULT 属性为默认值不序列化 
//Include.NON_EMPTY 属性为 空(“”) 或者为 NULL 都不序列化 
//Include.NON_NULL 属性为NULL 不序列化 
User user = new User(1,"",null); 
String outJson = mapper.writeValueAsString(user); 
System.out.println(outJson);

 

注意:只对VO起作用,Map List不起作用

例如

1
2
3
4
5
6
7
8
9
10
11
12
13
14
ObjectMapper mapper = 
new 
ObjectMapper();
mapper.setSerializationInclusion(Include.NON_NULL);
 
Map map = 
new 
HashMap();
map.put(
"a"
null
);
map.put(
"b"
"b"
);
 
String ret_val = mapper.writeValueAsString(map);
System.err.println(ret_val);
Map m = mapper.readValue(ret_val, Map.
class
);
System.err.println(m.get(
"a"
) + 
"|" 
+ m.get(
"b"
));
输出:
{
"b"
:
"b"
,
"a"
:
null
}
null
|b

  

1
2
3
4
5
6
7
8
9
10
11
VO vo = 
new 
VO();
vo.setA(
null
);
vo.setB(
"b"
);
         
String ret_val1 = mapper.writeValueAsString(vo);
System.err.println(ret_val1);
VO v = mapper.readValue(ret_val1, VO.
class
);
System.err.println(v.getA() + 
"|" 
+ v.getB());<br>
输出
{
"b"
:
"b"
}
|b

转载于:https://www.cnblogs.com/zycyc/p/11459223.html

你可能感兴趣的文章
java线程中的interrupt,isInterrupt,interrupted方法
查看>>
where can I find source of com.android.internal.R.styleable.AlertDialog_multiChoiceItemLayout?
查看>>
ViewDragHelper详解
查看>>
Akka(43): Http:SSE-Server Sent Event - 服务端主推消息
查看>>
Developing for nRF52810(转载)
查看>>
java netty nio
查看>>
115 不同的路径Ⅱ
查看>>
POJ2104 K-th Number 主席树
查看>>
【转】Spring学习---为什么要用spring,springMVC
查看>>
idea激活
查看>>
wmi文章地址
查看>>
盒子的偏移量
查看>>
Spring3系列12- Spring AOP AspectJ
查看>>
JAVA异常与异常处理详解
查看>>
UML类图几种关系的总结
查看>>
链表中倒数第k个节点
查看>>
Frogger
查看>>
线程同步
查看>>
好久没写题解了= =这次是bzoj 1051
查看>>
box-shadow
查看>>