我有一个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.
我想知道我错过了什么?
答案 0 :(得分: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-your.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);
}
}
<强> input.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>
了解更多信息