@XmlElement且无用的“必需”参数

2022-09-03 05:38:42

我把@XmlElement(name = “title”,required = true)放在javabean属性int some_property之前,并且没有为some_property赋值。由于某种原因,生成的 XML 中不会出现此属性。因此,请解释一下必需的含义

代码的一些有意义的部分:

@XmlRootElement(name = "book")
@XmlType(propOrder = { "author", "name", "publisher", "isbn" })
public class Book {

private String name;
private String author;
private String publisher;
private String isbn;

// If you like the variable name, e.g. "name", you can easily change this
// name for your XML-Output:
@XmlElement(name = "title",required = true)
public String getName() {
    return name;
}
....

在主线的某个地方:

    // create books
    Book book1 = new Book();
    book1.setIsbn("978-0060554736");

    book1.setAuthor("Neil Strauss");
    book1.setPublisher("Harpercollins");
    bookList.add(book1);


    Book book2 = new Book();
    book2.setIsbn("978-3832180577");
    book2.setName("Feuchtgebiete");
    book2.setAuthor("Charlotte Roche");
    book2.setPublisher("Dumont Buchverlag");
    bookList.add(book2);

    JAXBContext context = JAXBContext.newInstance(Bookstore.class);
    Marshaller m = context.createMarshaller();
    m.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, Boolean.TRUE);

    // Write to System.out
    m.marshal(bookstore, System.out);

    // Write to File
    m.marshal(bookstore, new File(BOOKSTORE_XML));

    // get variables from our xml file, created before
    System.out.println();
    System.out.println("Output from our XML File: ");
    Unmarshaller um = context.createUnmarshaller();
    Bookstore bookstore2 = (Bookstore) um.unmarshal(new FileReader(BOOKSTORE_XML));
    ArrayList<Book> list = bookstore2.getBooksList();

答案 1

做什么required@XmlElement

注解上的属性会影响从 Java 类生成的 XML 模式。required@XmlElement

域模型(根)

下面是一个简单的 Java 模型。请注意酒店如何拥有和没有。barrequired=truefoo

import javax.xml.bind.annotation.*;

@XmlRootElement
@XmlAccessorType(XmlAccessType.FIELD)
public class Root {

    @XmlElement
    private String foo;

    @XmlElement(required=true)
    private String bar;

    @XmlElement(nillable=true)
    private String baz;

}

演示代码

下面是一些代码,演示如何使用 生成 XML 架构。JAXBContext

import java.io.IOException;
import javax.xml.bind.*;
import javax.xml.transform.Result;
import javax.xml.transform.stream.StreamResult;

public class GenerateSchema {

    public static void main(String[] args) throws Exception {
        JAXBContext jc = JAXBContext.newInstance(Root.class);

        jc.generateSchema(new SchemaOutputResolver() {
            @Override
            public Result createOutput(String namespaceUri,
                    String suggestedFileName) throws IOException {
                StreamResult result = new StreamResult(System.out);
                result.setSystemId(suggestedFileName);
                return result;
            }
        });
    }

}

生成的 XML 架构

下面是生成的 XML 架构,注释了对应于字段的 XML 元素如何具有,而对应于字段的 XML 元素(用 它没有注释)。这是因为默认值为 1 表示它是必需的。foominOccurs="0"bar@XmlElement(required=true)minOccurs

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<xs:schema version="1.0" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:element name="root" type="root"/>
  <xs:complexType name="root">
    <xs:sequence>
      <xs:element name="foo" type="xs:string" minOccurs="0"/>
      <xs:element name="bar" type="xs:string"/>
      <xs:element name="baz" type="xs:string" nillable="true" minOccurs="0"/>
    </xs:sequence>
  </xs:complexType>
</xs:schema>

如果需要值的元素null

域模型(根)

该字段已使用 注释。如果该值为 null,则生成的 XML 元素将利用该属性。如果没有此注释,null 值将被视为缺少的节点。baz@XmlElement(nillable=true)xsi:nil

import javax.xml.bind.annotation.*;

@XmlRootElement
@XmlAccessorType(XmlAccessType.FIELD)
public class Root {

    @XmlElement
    private String foo;

    @XmlElement(required=true)
    private String bar;

    @XmlElement(nillable=true)
    private String baz;

}

演示代码

import javax.xml.bind.*;

public class MarshalDemo {

    public static void main(String[] args) throws Exception {
        JAXBContext jc = JAXBContext.newInstance(Root.class);

        Root root = new Root();

        Marshaller marshaller = jc.createMarshaller();
        marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
        marshaller.marshal(root, System.out);
    }

}

输出

下面是运行演示代码生成的 XML。

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<root>
    <baz xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true"/>
</root>

答案 2

寄件人: http://docs.oracle.com/javaee/5/api/javax/xml/bind/annotation/XmlElement.html

需要公共抽象布尔值

自定义所需的元素声明。如果 required() 为 true,则 Javabean 属性映射到 xml 模式元素声明,minOccurs=“1”。maxOccurs 对于单值属性为“1”,对于多值属性为“无界”。

如果 required() 为 false,则 Javabean 属性将映射到 XML Schema 元素声明,minOccurs=“0”。maxOccurs 对于单值属性为“1”,对于多值属性为“无界”。

您的属性将映射到(希望)在架构中根据需要声明的元素。您生成的 XML 不符合该特定架构,这或多或少是我对不“按其布局的规则”的实例所期望的


推荐