3

我想知道是否有任何方法可以使用 jaxb 从生成的 xml 中删除不需要的元素。我的 xsd 元素定义如下。

           <xsd:element name="Title" maxOccurs="1" minOccurs="0">
                <xsd:annotation>
                    <xsd:documentation>
                        A name given to the digital record.
                    </xsd:documentation>
                </xsd:annotation>
                <xsd:simpleType>
                    <xsd:restriction base="xsd:string">
                        <xsd:minLength value="1"></xsd:minLength>
                    </xsd:restriction>
                </xsd:simpleType>
            </xsd:element>

如您所见,它不是强制性元素,因为

minOccurs="0"

但如果它不为空,则长度应为 1。

<xsd:minLength value="1"></xsd:minLength>

在编组时,如果我将 Title 字段留空, 由于最小长度限制,它会抛出SAXException 。所以我想要做的是<Title/> 从生成的 XML 中删除整个出现。现在我已经删除了最小长度限制,所以它将<Title>元素添加为EMPTY

<Title></Title>

但我不希望这样。感谢任何帮助。我正在使用 jaxb 2.0 进行编组。

更新:

以下是我的变量定义:

  private JAXBContext jaxbContext;
    private Unmarshaller unmarshaller;
    private SchemaFactory factory;
    private Schema schema;
    private Marshaller marshaller;

编组代码。

            jaxbContext = JAXBContext.newInstance(ERecordType.class);
            marshaller = jaxbContext.createMarshaller();
            factory = SchemaFactory.newInstance(XMLConstants.W3C_XML_SCHEMA_NS_URI);
            schema = factory.newSchema((new File(xsdLocation)));
            marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
            ERecordType e = new ERecordType();
            e.setCataloging(rc);
            /**
             * Validate Against Schema.
             */
            marshaller.setSchema(schema);
            /**
             * Marshal will throw an exception if XML not validated against
             * schema.
             */
            marshaller.marshal(e, System.out);
4

2 回答 2

4

如果将标题值设置为""它将生成的空字符串<Title/>,如果将其设置为null它应该完全省略该元素。

于 2012-09-03T09:36:27.667 回答
0

我正在利用 XmlAdapter,实现一个透明适配器,如果 Collection 或 String 为空,则它在编组 null 值时返回。

public class XMLStringAdapter extends XmlAdapter<String, String> {


    @Override
    public String unmarshal(String v) throws Exception {
        return v;
    }

    @Override
    public String marshal(String v) throws Exception {
        return v != null && v.isEmpty() ? null : v;
    }
}

还要添加 package-info.java

@XmlJavaTypeAdapters({
@XmlJavaTypeAdapter(value=StringAdapter.class, type=String.class)
})
your.package

https://www.eclipse.org/eclipselink/documentation/2.6/moxy/advanced_concepts006.htm

JAXB XmlAdapter 如何用于编组列表?

于 2020-09-16T08:39:24.283 回答