3

我有一个像这样的 XML:

<message  xmlns:gtm="http:// www.example.com/working/gtm">
    <gtm:header>
    <someid></someid>
    <sometext></sometext>
    </gtm:header>
    <gtm:customer>0123456789</gtm:customer>
</message>

我正在使用@XmlPath映射。但是当我运行代码时,我得到了这个错误:

Exception [EclipseLink-25016] (Eclipse Persistence Services - 2.3.2.v20111125-r10461): org.eclipse.persistence.exceptions.XMLMarshalException
Exception Description: A namespace for the prefix gtm:header was not found in the namespace resolver.

我想知道我错过了什么?

4

1 回答 1

5

下面是一个示例,说明如何使用EclipseLink JAXB (MOXy)映射您的用例。

包信息

@XmlSchema首先,您需要使用包级别注释设置命名空间信息。稍后我们将利用@XmlNs注释指定的命名空间前缀@XmlPath

@XmlSchema(
    namespace="http:// www.example.com/working/gtm",
    xmlns={
        @XmlNs(prefix="gtm", namespaceURI="http:// www.example.com/working/gtm")
    },
    elementFormDefault=XmlNsForm.UNQUALIFIED)
package forum10548370;

import javax.xml.bind.annotation.*; 

信息

@XmlPath注释用于指定基于 XPath 的 MOXy 映射。由于在@XmlSchema我们指定的注释中elementFormDefault=XmlNsForm.UNQUALIFIED,没有前缀的 XPath 部分将不是命名空间限定的。

package forum10548370;

import javax.xml.bind.annotation.*;
import org.eclipse.persistence.oxm.annotations.XmlPath;

@XmlRootElement(name="message", namespace="")
@XmlAccessorType(XmlAccessType.FIELD)
public class Message {

    @XmlPath("gtm:header/someid/text()")
    private String id;

    @XmlPath("gtm:header/sometext/text()")
    private String text;

    @XmlElement(namespace="http:// www.example.com/working/gtm")
    private String customer;

}

jaxb.properties

要将 MOXy 指定为您的 JAXB 提供程序,您需要jaxb.properties使用以下条目添加一个在与域模型相同的包中调用的文件(请参阅http://blog.bdoughan.com/2011/05/specifying-eclipselink-moxy-as-你的.html):

javax.xml.bind.context.factory=org.eclipse.persistence.jaxb.JAXBContextFactory

演示

package forum10548370;

import java.io.File;
import javax.xml.bind.*;

public class Demo {

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

        File xml = new File("src/forum10548370/input.xml");
        Unmarshaller unmarshaller = jc.createUnmarshaller();
        Message message = (Message) unmarshaller.unmarshal(xml);

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

}

输入.xml/输出

<?xml version="1.0" encoding="UTF-8"?>
<message xmlns:gtm="http:// www.example.com/working/gtm">
   <gtm:header>
      <someid></someid>
      <sometext></sometext>
   </gtm:header>
   <gtm:customer>0123456789</gtm:customer>
</message>

了解更多信息

于 2012-05-11T09:41:18.850 回答