下面是一个示例,说明如何使用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>
了解更多信息