XML 架构
我正在编写一个 XSD,恰好有一个要求,我需要 2 个根元素(在任何给定时间 1 个)
下面的 XML 模式支持具有两个根元素booksList
并且book
您正在寻找。
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="booksList">
<xs:complexType>
<xs:sequence>
<xs:element name="book" type="bookType" minOccurs="0"
maxOccurs="unbounded" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="book" type="bookType"></xs:element>
<xs:complexType name="bookType">
<xs:sequence>
<xs:element name="author" type="xs:string" />
</xs:sequence>
</xs:complexType>
</xs:schema>
生成模型
我尝试将书籍定义放在 XSD 中,但 JAXB2.1 没有生成任何书籍类。
您的 JAXB (JSR-222) 实现将为命名的复杂类型生成一个类bookType
,然后为该类bookElement
创建一个@XmlElementDecl
注释ObjectFactory
。
书单
在此类上生成了一个带有 的@XmlRootElement
类,因为它对应于具有匿名复杂类型的全局元素。
package forum11620825;
import java.util.*;
import javax.xml.bind.annotation.*;
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {"book"})
@XmlRootElement(name = "booksList")
public class BooksList {
protected List<BookType> book;
public List<BookType> getBook() {
if (book == null) {
book = new ArrayList<BookType>();
}
return this.book;
}
}
书本类型
生成此类以对应于命名的复杂类型。
package forum11620825;
import javax.xml.bind.annotation.*;
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "bookType", propOrder = {"author"})
public class BookType {
@XmlElement(required = true)
protected String author;
public String getAuthor() {
return author;
}
public void setAuthor(String value) {
this.author = value;
}
}
对象工厂
对应于命名复杂类型的全局元素具有@XmlElementDecl
在类上生成的注释ObjectFactory
。这是必要的,因为多个全局元素可能对应于命名的复杂类型。
package forum11620825;
import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlElementDecl;
import javax.xml.bind.annotation.XmlRegistry;
import javax.xml.namespace.QName;
@XmlRegistry
public class ObjectFactory {
private final static QName _Book_QNAME = new QName("", "book");
public ObjectFactory() {
}
public BooksList createBooksList() {
return new BooksList();
}
public BookType createBookType() {
return new BookType();
}
@XmlElementDecl(namespace = "", name = "book")
public JAXBElement<BookType> createBook(BookType value) {
return new JAXBElement<BookType>(_Book_QNAME, BookType.class, null, value);
}
}
XML
以下是您问题中的 XML 文档。
书籍列表.xml
<booksList>
<book>
<author>XYZ</author>
</book>
</booksList>
书本.xml
<book>
<author>XYZ</author>
</book>
演示代码
当您解组其中根元素对应于@XmlRootElement
注释的文档时,您将获得相应域对象的实例。如果你解组一个根元素对应于一个@XmlElementDecl
注释的文档,你会得到一个JAXBElement
包含与命名复杂类型对应的域对象的实例。
package forum11620825;
import java.io.File;
import javax.xml.bind.*;
public class Demo {
public static void main(String[] args) throws Exception {
JAXBContext jc = JAXBContext.newInstance("forum11620825");
Unmarshaller unmarshaller = jc.createUnmarshaller();
File input1 = new File("src/forum11620825/booksList.xml");
BooksList bookList = (BooksList) unmarshaller.unmarshal(input1);
File input2 = new File("src/forum11620825/book.xml");
JAXBElement<BookType> je = (JAXBElement<BookType>) unmarshaller.unmarshal(input2);
BookType bookType = je.getValue();
}
}
更新
下面是一个代码片段,演示了如何将 的实例包装BookType
在 aJAXBElement
中,以便对其进行编组。
ObjectFactory objectFactory = new ObjectFactory();
JAXBElement<BookType> jaxbElement = objectFactory.createBook(aBookType);
marshaller.marshal(jaxbElement, System.out);