1

我有一个深度 XML 结构,其中包含许多无意义的包装器,我将它们映射到单个 Java 类。有几个不同的文件,其中的内容和结构略有不同。因为我希望能够将生成的类转换为易于比较的东西(例如,每个表示都包含一个名称),所以我想知道是否可以为@XmlPath.

继承是我(部分)解决问题的第一个想法,但由于结构顶部有一个不同的包装元素,我不确定如何解决。

示例 XML 结构

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<s:root xsi:schemaLocation="http://www.example.eu/test ResourceSchema.xsd" xmlns:s="http://www.example.eu/test" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <s:resource|s:data|s:container|s:stackoverflow>
        <s:information>
            <s:date>2013-07-04</s:date>
            <s:name>This example does not work</s:name>
        </s:information>
        <s:elements>
            <s:refobj>
                <s:id>1</s:id>
                <s:source>First Source</s:source>
            </s:refobj>
            <s:refobj>
                <s:id>2</s:id>
                <s:source>Second Source</s:source>
            </s:refobj>
            <s:refobj>
                <s:id>5</s:id>
                <s:source>Fifth Source</s:source>
            </s:refobj>
        </s:elements>
    </s:resource|s:data|s:container|s:stackoverflow>
</s:root>

XML 中的第二个元素显然是无效的,尽管它的结构不同并且可以包含几乎任何东西。然而,第三级元素information确实存在于每个单独的结构中,它甚至包含有关在 XML 中表示的元素类型的信息。

一个快速的解决方案是为每个可能的元素创建一个类,然后尝试/捕捉所有元素直到成功,尽管这似乎是一个可怕的解决方案。

解决此类 XML 相关问题的正确方法是什么?我无法更改结构,也无法访问架构来告诉我哪些元素具有多个名称。

4

1 回答 1

2

MOXy 目前不支持通配符,@XmlPath但下面是一种您可以使用StreamReaderDelegate.

领域模型

package forum17527941;

import java.util.Date;
import javax.xml.bind.annotation.*;
import org.eclipse.persistence.oxm.annotations.*;

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

    @XmlPath("s:stackoverflow/s:information/s:date/text()")
    @XmlSchemaType(name="date")
    private Date date = new Date();

    @XmlPath("s:stackoverflow/s:information/s:name/text()")
    private String name;

}

包信息

@XmlSchema(
    namespace="http://www.example.eu/test",
    xmlns={
        @XmlNs(prefix="s", namespaceURI="http://www.example.eu/test")
    },
    elementFormDefault=XmlNsForm.QUALIFIED)
package forum17527941;

import javax.xml.bind.annotation.*;

演示代码

演示

package forum17527941;

import javax.xml.bind.*;
import javax.xml.stream.*;
import javax.xml.stream.util.StreamReaderDelegate;
import javax.xml.transform.stream.StreamSource;

public class Demo {

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

        XMLInputFactory xif = XMLInputFactory.newFactory();
        StreamSource xml = new StreamSource("src/forum17527941/input.xml");
        XMLStreamReader xsr = xif.createXMLStreamReader(xml);
        xsr = new StreamReaderDelegate(xsr) {

            @Override
            public String getLocalName() {
                String localName = super.getLocalName();
                if("resource".equals(localName) || "data".equals(localName) || "container".equals(localName)) {
                    return "stackoverflow";
                }
                return localName;
            }
        };

        Unmarshaller unmarshaller = jc.createUnmarshaller();
        Root root = (Root) unmarshaller.unmarshal(xsr);

        Marshaller marshaller = jc.createMarshaller();
        marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
        marshaller.setProperty(Marshaller.JAXB_SCHEMA_LOCATION, "http://www.example.eu/test ResourceSchema.xsd");
        marshaller.marshal(root, System.out);
    }

}

输入.xml

使用以下输入,StreamReaderDelegate将导致resource元素被报告为stackoverflow映射的匹配项。

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<s:root xsi:schemaLocation="http://www.example.eu/test ResourceSchema.xsd" xmlns:s="http://www.example.eu/test" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <s:resource>
        <s:information>
            <s:date>2013-07-04</s:date>
            <s:name>This example does not work</s:name>
        </s:information>
    </s:resource>
</s:root>

输出

输出将匹配域模型中的映射。

<?xml version="1.0" encoding="UTF-8"?>
<s:root xsi:schemaLocation="http://www.example.eu/test ResourceSchema.xsd" xmlns:s="http://www.example.eu/test" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
   <s:stackoverflow>
      <s:information>
         <s:date>2013-07-04</s:date>
         <s:name>This example does not work</s:name>
      </s:information>
   </s:stackoverflow>
</s:root>

了解更多信息

于 2013-07-12T20:47:07.003 回答