当java对象的某个属性使用泛型时,普通对象都没问题,但是遇到HashSet这种集合类封装的元素时,就会出现元素内容序列化不出来的问题,详见如下:

一、示例:

第一步:定义java对象

Java代码  
  1. package step3;
  2. import javax.xml.bind.annotation.XmlAccessType;
  3. import javax.xml.bind.annotation.XmlAccessorType;
  4. import javax.xml.bind.annotation.XmlRootElement;
  5. @XmlRootElement
  6. @XmlAccessorType(value = XmlAccessType.PROPERTY)
  7. public class Customer<T> {
  8. String name;
  9. int age;
  10. int id;
  11. T t;
  12. public String getName() {
  13. return name;
  14. }
  15. public void setName(String name) {
  16. this.name = name;
  17. }
  18. public int getAge() {
  19. return age;
  20. }
  21. public void setAge(int age) {
  22. this.age = age;
  23. }
  24. public int getId() {
  25. return id;
  26. }
  27. public void setId(int id) {
  28. this.id = id;
  29. }
  30. @Override
  31. public String toString() {
  32. return "Customer [id=" + id + ",name=" + name + ",age=" + age + ",t=" + t + "]";
  33. }
  34. public T getT() {
  35. return t;
  36. }
  37. public void setT(T t) {
  38. this.t = t;
  39. }
  40. }
Java代码  
  1. package step3;
  2. import javax.xml.bind.annotation.XmlAccessType;
  3. import javax.xml.bind.annotation.XmlAccessorType;
  4. @XmlAccessorType(value = XmlAccessType.PROPERTY)
  5. public class Book {
  6. private String id;
  7. private String name;
  8. private float price;
  9. public String getId() {
  10. return id;
  11. }
  12. public void setId(String id) {
  13. this.id = id;
  14. }
  15. public String getName() {
  16. return name;
  17. }
  18. public void setName(String name) {
  19. this.name = name;
  20. }
  21. public float getPrice() {
  22. return price;
  23. }
  24. public void setPrice(float price) {
  25. this.price = price;
  26. }
  27. @Override
  28. public String toString() {
  29. return "Book [id=" + id + ",name=" + name + ",price=" + price + "]";
  30. }
  31. }

第二步:编组(JAXBContext.newInstance(Customer.class,HashSet.class);方法添加了

HashSet的class对象,以提供给JAXBContext使用。)

Java代码  
  1. package step3;
  2. import java.io.File;
  3. import java.util.HashSet;
  4. import javax.xml.bind.JAXBContext;
  5. import javax.xml.bind.JAXBException;
  6. import javax.xml.bind.Marshaller;
  7. //Marshaller
  8. public class Object2XmlDemo {
  9. public static void main(String[] args) {
  10. Customer<HashSet<Book>> customer = new Customer<HashSet<Book>>();
  11. customer.setId(100);
  12. customer.setName("suo");
  13. customer.setAge(29);
  14. Book book = new Book();
  15. book.setId("1");
  16. book.setName("哈里波特");
  17. book.setPrice(100);
  18. Book book2 = new Book();
  19. book2.setId("2");
  20. book2.setName("苹果");
  21. book2.setPrice(50);
  22. HashSet<Book> bookSet = new HashSet<Book>();
  23. bookSet.add(book);
  24. bookSet.add(book2);
  25. customer.setT(bookSet);
  26. try {
  27. File file = new File("C:\\file1.xml");
  28. JAXBContext jaxbContext = JAXBContext.newInstance(Customer.class,
  29. HashSet.class);
  30. Marshaller jaxbMarshaller = jaxbContext.createMarshaller();
  31. // output pretty printed
  32. jaxbMarshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
  33. jaxbMarshaller.marshal(customer, file);
  34. jaxbMarshaller.marshal(customer, System.out);
  35. } catch (JAXBException e) {
  36. e.printStackTrace();
  37. }
  38. }
  39. }

得到的xml:

Xml代码  
  1. <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
  2. <customer>
  3. <age>29</age>
  4. <id>100</id>
  5. <name>suo</name>
  6. <t xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="hashSet"/>
  7. </customer>

注:

1.泛型使用集合元素替代时,泛型属性所对应的xml没有序列化出来。

2.若JAXBContext.newInstance(Customer.class,HashSet.class);不添加HashSet

的class对象,则报错:

[javax.xml.bind.JAXBException: class java.util.HashSet nor any of its super class is known to this context.]

解决办法:

第一步:新增HashSet的包装类

Book类和Customer类相关代码均不需要改变,新增一个HashSet的包装类,定义如下:

Java代码  
  1. package step4;
  2. import java.util.HashSet;
  3. import javax.xml.bind.annotation.XmlElement;
  4. import javax.xml.bind.annotation.XmlElementWrapper;
  5. public class BookSet {
  6. private HashSet<Book> bookSet = new HashSet<Book>();
  7. //仅包含get方法,未包含set方法
  8. @XmlElementWrapper(name = "bookSet")//该注解非必须,仅是标注集合元素
  9. @XmlElement(name="book")
  10. public HashSet<Book> getBookSet() {
  11. return bookSet;
  12. }
  13. public void addBook(Book book){
  14. bookSet.add(book);
  15. }
  16. }

注:

1.BookSet类内部使用HashSet实现.

2.BookSet类在get方法上添加了@XmlElementWrapper(name = "bookSet")注解。

第二步:编组

Java代码  
  1. package step4;
  2. import java.io.File;
  3. import javax.xml.bind.JAXBContext;
  4. import javax.xml.bind.JAXBException;
  5. import javax.xml.bind.Marshaller;
  6. //Marshaller
  7. public class Object2XmlDemo {
  8. public static void main(String[] args) {
  9. Customer<BookSet> customer = new Customer<BookSet>();
  10. customer.setId(100);
  11. customer.setName("suo");
  12. customer.setAge(29);
  13. Book book = new Book();
  14. book.setId("1");
  15. book.setName("哈里波特");
  16. book.setPrice(100);
  17. Book book2 = new Book();
  18. book2.setId("2");
  19. book2.setName("苹果");
  20. book2.setPrice(50);
  21. BookSet bookSet = new BookSet();
  22. bookSet.addBook(book);
  23. bookSet.addBook(book2);
  24. customer.setT(bookSet);
  25. try {
  26. File file = new File("C:\\file1.xml");
  27. JAXBContext jaxbContext = JAXBContext.newInstance(Customer.class,
  28. BookSet.class);
  29. Marshaller jaxbMarshaller = jaxbContext.createMarshaller();
  30. // output pretty printed
  31. jaxbMarshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
  32. jaxbMarshaller.marshal(customer, file);
  33. jaxbMarshaller.marshal(customer, System.out);
  34. } catch (JAXBException e) {
  35. e.printStackTrace();
  36. }
  37. }
  38. }

注:

1.定义Customer对象时,使用包装类,即:

Customer<BookSet> customer = new Customer<BookSet>();

2.JAXBContext调用newInstance()方法时,传入BookSet的class对象,告知BookSet的类型,即:JAXBContext.newInstance(Customer.class,BookSet.class);

得到的xml:

Xml代码  
  1. <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
  2. <customer>
  3. <age>29</age>
  4. <id>100</id>
  5. <name>suo</name>
  6. <t xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="bookSet">
  7. <bookSet>
  8. <book>
  9. <id>2</id>
  10. <name>苹果</name>
  11. <price>50.0</price>
  12. </book>
  13. <book>
  14. <id>1</id>
  15. <name>哈里波特</name>
  16. <price>100.0</price>
  17. </book>
  18. </bookSet>
  19. </t>
  20. </customer>

JAXB--@XmlElementWrapper注解和泛型一起使用相关推荐

  1. JAXB 中的@XmlElementWrapper注解生成问题

    JAXB 中的@XmlElementWrapper注解生成问题 1. 面临的问题场景 XHTML 1 2 3 4 5 6 7 <?xml version="1.0" enco ...

  2. JAXB常用注解讲解(超详细)

    简介: JAXB(Java Architecture for XML Binding) 是一个业界的标准,是一项可以根据XML Schema产生Java类的技术.该过程中,JAXB也提供了将XML实例 ...

  3. 黑马程序员---基础加强-----------------第二天(新特性:注解、泛型)

    注解:相当于一种标记,在程序中加了注解就等于为程序打上了某种标记,没加,则等于没有某种标记. 以后,javac编译器,开发工具和其他程序可以用反射来了解你的类及各种元素上有无何种标记,看你有什么标记, ...

  4. 使用@RequestParam注解和泛型遇到的问题

    @RequestParam注解的作用是给传入的参数起一个别名,但是当参数中含有泛型的时候,该注解无法识别泛型 去掉@RequestParam注解之后

  5. JAVA面试-基础加强与巩固:反射、注解、泛型等

    https://www.jianshu.com/p/aaf8594e02eb 企业重视的是学习能力:基础很重要 JDK1.5新特性 泛型 foreach 自动拆箱装箱 枚举 静态导入(Static i ...

  6. 黑马程序员 高新技术三 注解和泛型

    ----------android培训 java培训 期待与您交流! ---------- 第一节 了解和入门注解的应用 一.概述: 注解相当于一种标记,在程序中加了注解就等于为程序打上了某种标记,没 ...

  7. Java_比较器枚举类和注解集合泛型

    文章目录 Java_比较器 Java_自然排序:java.lang.Comparable Java_Comparable的实现 Java_定制排序java.util.Comparator Java_S ...

  8. java泛型和注解,泛型 · 注解和泛型 · 看云

    [TOC] # 泛型 ## 为什么要使用泛型 在之前学过的集合框架中,List和Map都使用了泛型技术来确认其内容的数据类型. 如果不使用泛型,在程序运行阶段,会带来数据类型转型的错误风险. ~~~ ...

  9. HowToDoInJava 其它教程 2 · 翻译完毕

    原文:HowToDoInJava 协议:CC BY-NC-SA 4.0 欢迎任何人参与和完善:一个人可以走的很快,但是一群人却可以走的更远. ApacheCN 学习资源 目录 JMS 教程 JMS 教 ...

最新文章

  1. Token 防盗链详解
  2. T级的备份兄弟们都怎么做
  3. 牛客 - Gaming with Mia(dp)
  4. 简单的企业微信开发 前后端
  5. 针对新手的Java EE7和Maven项目–第1部分–简单的Maven项目结构–父pom
  6. pytorch深度学习-微调(fine tuning)
  7. pta段错误是什么意思_用Python执行Django数据迁移时报!(1091错误及解决方法)...
  8. ORM框架SQLAlchemy使用学习
  9. C# 打开文件 保存文件
  10. lcl手术和飞秒区别_关于全飞秒价格的那些事!你知道吗?
  11. (四)DIH导入结构化数据
  12. 小黑算法成长日记11:基于Johnson算法de最优流水作业调度
  13. 安装AdventureWorks2008R2
  14. 深度步态识别综述(三)
  15. 开启电脑卓越性能模式
  16. 梨花带雨html音乐播放器源码,梨花带雨 - 雨陌文化传媒 - 5SING中国原创音乐基地...
  17. 以5‰的概率计算一个网络准确率达到99.9%的时间和迭代次数---实例三分类mnist 3,4,5
  18. 【JavaSE进阶(上)】自学笔记 记得收藏时时回顾
  19. 室内导航将成为杀手级应用
  20. 淘宝近12亿条用户信息泄露,犯罪分子获利34万

热门文章

  1. 一套图 搞懂“时间复杂度”
  2. 深度学习经典案例解析:YOLO系列
  3. 详解Python拼接字符串的七种方式
  4. 深度对话林元庆:AI创业历史性窗口到来,将诞生下个BAT
  5. SAP QM 采购货物收到第三方仓库,转库回工厂仓库之后质检之处理
  6. 走向通用智能的核心:任务树的建立
  7. 专访王田苗:机器人是“刚需”,市场正处于逆周期增长
  8. 机器学习奠基人Michael Jordan:下代技术是融合经济学,解读2项重要进展
  9. 美国在人工智能领域亟待解决的5大难题
  10. 模拟人脑项目彻底宣告失败:耗资10亿欧,10年前轰动全球,如今死得悄无声息...