fastjson指定Object属性转为json

//仅将stu的name转为json
Stu stu = new Stu();
stu.setId("123");
stu.setName("flym");
// SimplePropertyPreFilter第二个参数:传入需要序列化属性的名称
SimplePropertyPreFilter filter = new SimplePropertyPreFilter(Stu.class, "name");
// 只序列化name,不序列化id
System.out.println(JSON.toJSONString(stu, filter));

结果:{"name":"flym"}

posted on 2017-04-26 09:34  十字街~  阅读(1698)  评论(0编辑  收藏  举报