java 序列化对象如何排除指定属性呢?

java 中序列化对象有多种方式:struts2 ,jackson,json-lib

(1)使用struts2 json插件

依赖的jar包:struts2-json-plugin-2.3.15.3.jar,xwork-core-2.3.15.3.jar,当然还有servlet-api.jar

范例:

  1. private String getMessageJson(PushMessage message) {
  2. List<Pattern> excludeProperties = new ArrayList<Pattern>();
  3. Pattern pattern1 = Pattern.compile("description");
  4. Pattern pattern2 = Pattern.compile("creator");// 创建者ID
  5. Pattern pattern3 = Pattern.compile("modifier");// 修改者ID
  6. Pattern pattern4 = Pattern.compile("deliverTime");//
  7. Pattern pattern5 = Pattern.compile("description");//
  8. Pattern pattern6 = Pattern.compile("createTime");//
  9. Pattern pattern7 = Pattern.compile("modifyTime");//
  10. excludeProperties.add(pattern1);
  11. excludeProperties.add(pattern2);
  12. excludeProperties.add(pattern3);
  13. excludeProperties.add(pattern4);
  14. excludeProperties.add(pattern5);
  15. excludeProperties.add(pattern6);
  16. excludeProperties.add(pattern7);
  17. String pushJsonStr = null;
  18. try {
  19. PushMessage pushMessage = null;
  20. try {
  21. pushMessage = message.clone();
  22. } catch (CloneNotSupportedException e) {
  23. logger.error("pushmessage clone failed.", e);
  24. }
  25. pushJsonStr = JSONUtil.serialize(pushMessage, excludeProperties,
  26. null, false, false);
  27. logger.info("after struts serialize:" + pushJsonStr);
  28. } catch (JSONException e) {
  29. logger.error("struts serialize failed.", e);
  30. }// TOOD 判断json字符串的长度是否超过了256
  31. return pushJsonStr;
  32. }

注意:Pattern.compile 的参数就是要排除的成员变量名称(即description,creator,modifier都是成员变量名称)

(2)使用Jackson

官网:http://jackson.codehaus.org/

参考:http://blog.csdn.net/sciurid/article/details/8624107

http://www.cnblogs.com/hoojo/archive/2011/04/22/2024628.html

依赖的jar:jackson-mapper-lgpl-1.9.9.jar,jackson-core-lgpl-1.9.9.jar

如果使用maven,则在pom.xml中添加依赖

  1. <!-- Json转化模块 -->
  2. <dependency>
  3. <groupId>org.codehaus.jackson</groupId>
  4. <artifactId>jackson-mapper-lgpl</artifactId>
  5. <version>1.9.9</version>
  6. </dependency>

如何排除指定属性呢?

方式一:

先把要准备排除的属性的值设置为null

然后设置mapper的包含策略,看下面的实例:

  1. public void test_jackson(){
  2. //      Map map=new HashMap();
  3. //      map.put("name", "黄威");
  4. List<Student2> stus=null;
  5. stus=new ArrayList<Student2>();
  6. Student2 stu=new Student2();
  7. stus.add(stu);
  8. stu.setAddress(null);
  9. ObjectMapper mapper = new ObjectMapper();
  10. mapper.setSerializationInclusion(Inclusion.NON_NULL);
  11. String content = null;
  12. try {
  13. content = mapper.writeValueAsString(stus);
  14. System.out.println(content);
  15. } catch (JsonGenerationException e) {
  16. e.printStackTrace();
  17. } catch (JsonMappingException e) {
  18. e.printStackTrace();
  19. } catch (IOException e) {
  20. e.printStackTrace();
  21. }
  22. }

我把Student2对象的属性address设置为null,那么序列化时就会排除address属性.

注意:mapper.setSerializationInclusion(Inclusion.NON_NULL); 表示排除值为null的属性(成员变量)

方式二:使用FilterProvider

  1. @Test
  2. public void test_jackson2(){
  3. List<Student2> stus=null;
  4. stus=new ArrayList<Student2>();
  5. Student2 stu=new Student2();
  6. stus.add(stu);
  7. stu.setClassroom("36班");
  8. ObjectMapper mapper = new ObjectMapper();
  9. String content = null;
  10. try {
  11. //          content = mapper.writeValueAsString(stus);
  12. SimpleBeanPropertyFilter theFilter = SimpleBeanPropertyFilter.serializeAllExcept("schoolNumber");
  13. FilterProvider filters = new SimpleFilterProvider().addFilter("myFilter", theFilter);
  14. content = mapper.writer(filters).writeValueAsString(stu);
  15. System.out.println(content);
  16. } catch (JsonGenerationException e) {
  17. e.printStackTrace();
  18. } catch (JsonMappingException e) {
  19. e.printStackTrace();
  20. } catch (IOException e) {
  21. e.printStackTrace();
  22. }
  23. }

注意:在排除属性的对象上面增加注解:@JsonFilter("myFilter")

参考:http://www.baeldung.com/jackson-ignore-properties-on-serialization

java 序列化时排除指定属性的更多相关文章

  1. 7z压缩文件时排除指定的文件

    分享一个7z压缩文件时排除指定文件类型的命令行,感觉很有用: 7z a -t7z d:\updateCRM.7z d:\updateCRM\*.* -r -x!*.log -x!*bak a:创建压缩 ...

  2. ZIP、tar.gz压缩时排除指定目录

    1.ZIP 压缩时排除一个文件夹下所有内容zip -r sss.zip sss/ -x "sss/222/*" 压缩时排除指定多个文件夹下所有内容zip -r sss.zip ss ...

  3. Sublime Text 查找时排除指定的文件夹或文件

    Sublime Text 查找时排除指定的文件夹或文件 Ctrl + Shift + F这组快捷键可以调出 Sublime Text 的查找替换窗口,里边有一栏 Where,可以做一些高级设置:d:\ ...

  4. FastJson序列化时过滤字段(属性)的方法总结

    FastJson序列化时(即转成JSON字符串时),可以过滤掉部分字段,或者只保留部分字段,方法有很多,下面举一些常用的方法. 方法一.FastJson的注解 @JSONField(serialize ...

  5. Java序列化由于没有指定serialVersionUID导致报错

    z.JobPersistenceException: Couldn't retrieve job because the BLOB couldn't be deserialized: com.mode ...

  6. GSON使用笔记(1) -- 序列化时排除字段的几种方式

    http://blog.csdn.net/zxhoo/article/details/21471005 GSON是Google发布的JSON序列化/反序列化工具,非常容易使用.本文简要讨论在使用GSO ...

  7. grep时排除指定的文件和目录

    参考:http://winterth.duapp.com/notes/ar03s04.htmlhttp://blog.sina.com.cn/s/blog_7169c8ce0100qkyf.html ...

  8. Java四舍五入时保留指定小数位数

    方式一: double f = 3.1516; BigDecimal b = new BigDecimal(f); , BigDecimal.ROUND_HALF_UP).doubleValue(); ...

  9. C# Newtonsoft.Json JObject移除属性,在序列化时忽略

    原文 C# Newtonsoft.Json JObject移除属性,在序列化时忽略 一.针对 单个 对象移除属性,序列化时忽略处理 JObject实例的 Remove() 方法,可以在 指定序列化时移 ...

随机推荐

  1. restframework api (一)认证

    一 什么是RESTful REST与技术无关,代表的是一种软件架构风格,REST是Representational State Transfer的简称,中文翻译为“表征状态转移” REST从资源的角度 ...

  2. 99%的人都理解错了HTTP中GET与POST的区别(转自知乎)

    作者:Larry链接:https://zhuanlan.zhihu.com/p/22536382来源:知乎著作权归作者所有.商业转载请联系作者获得授权,非商业转载请注明出处. GET和POST是HTT ...

  3. 安装win7和ubuntu双系统

    最近买了新的笔记本电脑,发现新买的电脑上面安装的是win7用户版,在网上查了一下这个版本的win7是功能最少的...另外又发现偌大的500G硬盘居然只给分成2个区,每个250...各种不爽,于是决定格 ...

  4. java 生成xml文件

    这里也使用的是import org.w3c.dom.Document; 首先创建document对象,给该对象赋值,然后将document对象使用transformer的transformer转换方法 ...

  5. linux centos 虚拟机新安装后没有网络

    ping的时候出现 name or service not known的时候 可以 修改/etc/sysconfig/network-scripts/ifcfg-ens33 文件 vi ifcfg-e ...

  6. VMware上安装CenterOS

    1.环境:Win10.VMware Workstation 12.Centeros 7 2.VMware workstation12安装 双击“VMware_workstation_full_12.5 ...

  7. tensorflow中tensor的静态维度和动态维度

    tf中使用张量(tensor)这种数据结构来表示所有的数据,可以把张量看成是一个具有n个维度的数组或列表,张量会在各个节点之间流动,参与计算. 张量具有静态维度和动态维度. 在图构建过程中定义的张量拥 ...

  8. POJ2374 Fence Obstacle Course

    题意 Language:Default Fence Obstacle Course Time Limit: 3000MS Memory Limit: 65536K Total Submissions: ...

  9. 几个基于jvm 的微服务框架

    一个简单的整理,留待深入学习 micronaut http://micronaut.io/ sparkjava http://saprkjava.com spring cloud http://pro ...

  10. MSMQ向远程服务器发送消息----错误总结

    一:路径错误(Path)错误 如果向远程服务器发送消息,请使用格式名的形式,如: FormatName:Direct=TCP:121.0.0.1\\private$\\queueFormatName: ...