1

我已经从 XSD 生成了 Java 类,我想从带有前缀命名空间的 JAXB 类中编组

这就是我所拥有的

<?xml version="1.0" encoding="UTF-8"?>  
<schema xmlns="http://www.w3.org/2001/XMLSchema"  
targetNamespace="http://www.example.org/event"  
        xmlns:tns="http://www.example.org/event"  
        elementFormDefault="qualified"> 
<element name="Events" type="tns:EventsType"></element>  
<complexType name="EventsType">  
<sequence>  
<element name="Event" type="tns:inputFlowEventType" maxOccurs="unbounded" minOccurs="1"></element>  
</sequence></complexType>  
<complexType name="inputFlowEventType">  
<sequence>  
<element name="DISTRIBUTOR_ID" minOccurs="1" maxOccurs="1">  
<simpleType><restriction base="string"><maxLength value="17"></maxLength></restriction></simpleType>  
</element>  
</sequence>  
</complexType>  
</schema>

我有这个

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>  <Events xmlns="http://www.example.org/event"><Event><DISTRIBUTOR_ID>6</DISTRIBUTOR_ID></Event></Events>

而不是这个

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>  <tns:Events xmlns="http://www.example.org/event">    <tns:Event><tns:DISTRIBUTOR_ID>6</tns:DISTRIBUTOR_ID></tns:Event></tns:Events>

有人可以知道出了什么问题吗?

谢谢

4

1 回答 1

0

这两个文档在命名空间限定方面是等价的。第一个指定默认命名空间,第二个声明带有前缀的名称。如果您想控制使用的前缀,答案将取决于您使用的 JAXB 实现。MOXy 将使用在 @XmlSchema 注释中声明的前缀。JAXB RI 有一个 NamespacePrefixMapper 扩展(也受 MOXy 支持):

于 2012-05-21T15:18:28.720 回答