这个 xml 文件的 jaxb 注释应该是什么?
What should be the jaxb annotations for this xml file?
我有一个 xml 文件负载,我想使用 jaxb 解组,我创建了一个 pojo class 用于解组,并且我定义了 xml 属性和元素那个 pojo,但我对名称空间有点困惑,如何注释它们?
我的 xml 文件:
<ns1:ContractLinkEvent xmlns:ns0="http://Enterprise.BizTalk.Canonical.Schemas/v2.0/ESB" xmlns:ns1="http://Enterprise.BizTalk.MCF.Core.Schemas/v2.0/ESB">
<Header xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
</Header>
<ContractLink xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<ContractLinkId>1509148</ContractLinkId>
<BillingProfile>
<BillingProfileId>173886</BillingProfileId>
<BillingProfileCode xsi:nil="true"/>
</BillingProfile>
</ContractLink>
</ns1:ContractLinkEvent>
我的 Jaxb 注释 Pojo 是:
@XmlRootElement(name = "ContractLinkEvent", namespace="http://Enterprise.BizTalk.Canonical.Schemas/v2.0/ESB")
@XmlAccessorType(XmlAccessType.FIELD)
public class ContractLinkPojo {
@XmlElement(name="Header")
private String Header;
@XmlElement(name="ContractLink")
private String ContractLink;
。
.
.
继续
解组时出现以下异常:
java.io.IOException: javax.xml.bind.UnmarshalException
- with linked exception:
[com.sun.istack.SAXParseException2; lineNumber: 1; columnNumber: 1; unexpected element (uri:"http://Enterprise.BizTalk.MCF.Core.Schemas/v2.0/ESB", local:"ContractLinkEvent"). Expected elements are (none)]
我认为我没有正确定义命名空间,因为我还没有定义命名空间,因为我仍然很困惑,有什么想法吗?
编辑:
这是我的解组路由
rest("/readXml")
.consumes("application/xml")
.post()
.to("direct:xmlread");
from("direct:xmlread").streamCaching()
.doTry().unmarshal(xmlDataFormat)
.process(readAndInsertXml)
.to("mock:result").end();
}
名称空间类似于 Java 中的包名称。您使用它为您创建的 XML 元素设置一个唯一的名称,这样它们就不会与其他 XML 元素冲突。
您可以将默认的 XML 命名空间定义为:
xmlns="http://Enterprise.BizTalk.Canonical.Schemas/v2.0/ESB"
您可以定义多个 XML 命名空间,前缀为:
xmlns:ns0="..."
xmlns:ns1="..."
上面的ns0和ns1是你创建的前缀。
在您的 xml 中,您没有定义任何默认命名空间。所以,我猜你正在尝试使用命名空间前缀 ns0 和 ns1 来标识元素。在这种情况下,您已将 ns1 用于 ContractLinkElement 而不是 < Header >、< ContractLink > 或其他任何内容。但是,ns0 不会在任何地方使用,如果不需要,您可以将其删除。请检查这是否是您打算执行的操作。
另外,没有结束标签:
<ns1:ContractLinkEvent
xmlns:ns0="http://Enterprise.BizTalk.Canonical.Schemas/v2.0/ESB"
xmlns:ns1="http://Enterprise.BizTalk.MCF.Core.Schemas/v2.0/ESB">
我有一个 xml 文件负载,我想使用 jaxb 解组,我创建了一个 pojo class 用于解组,并且我定义了 xml 属性和元素那个 pojo,但我对名称空间有点困惑,如何注释它们?
我的 xml 文件:
<ns1:ContractLinkEvent xmlns:ns0="http://Enterprise.BizTalk.Canonical.Schemas/v2.0/ESB" xmlns:ns1="http://Enterprise.BizTalk.MCF.Core.Schemas/v2.0/ESB">
<Header xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
</Header>
<ContractLink xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<ContractLinkId>1509148</ContractLinkId>
<BillingProfile>
<BillingProfileId>173886</BillingProfileId>
<BillingProfileCode xsi:nil="true"/>
</BillingProfile>
</ContractLink>
</ns1:ContractLinkEvent>
我的 Jaxb 注释 Pojo 是:
@XmlRootElement(name = "ContractLinkEvent", namespace="http://Enterprise.BizTalk.Canonical.Schemas/v2.0/ESB")
@XmlAccessorType(XmlAccessType.FIELD)
public class ContractLinkPojo {
@XmlElement(name="Header")
private String Header;
@XmlElement(name="ContractLink")
private String ContractLink;
。 . . 继续
解组时出现以下异常:
java.io.IOException: javax.xml.bind.UnmarshalException
- with linked exception:
[com.sun.istack.SAXParseException2; lineNumber: 1; columnNumber: 1; unexpected element (uri:"http://Enterprise.BizTalk.MCF.Core.Schemas/v2.0/ESB", local:"ContractLinkEvent"). Expected elements are (none)]
我认为我没有正确定义命名空间,因为我还没有定义命名空间,因为我仍然很困惑,有什么想法吗?
编辑: 这是我的解组路由
rest("/readXml")
.consumes("application/xml")
.post()
.to("direct:xmlread");
from("direct:xmlread").streamCaching()
.doTry().unmarshal(xmlDataFormat)
.process(readAndInsertXml)
.to("mock:result").end();
}
名称空间类似于 Java 中的包名称。您使用它为您创建的 XML 元素设置一个唯一的名称,这样它们就不会与其他 XML 元素冲突。 您可以将默认的 XML 命名空间定义为:
xmlns="http://Enterprise.BizTalk.Canonical.Schemas/v2.0/ESB"
您可以定义多个 XML 命名空间,前缀为:
xmlns:ns0="..."
xmlns:ns1="..."
上面的ns0和ns1是你创建的前缀。
在您的 xml 中,您没有定义任何默认命名空间。所以,我猜你正在尝试使用命名空间前缀 ns0 和 ns1 来标识元素。在这种情况下,您已将 ns1 用于 ContractLinkElement 而不是 < Header >、< ContractLink > 或其他任何内容。但是,ns0 不会在任何地方使用,如果不需要,您可以将其删除。请检查这是否是您打算执行的操作。
另外,没有结束标签:
<ns1:ContractLinkEvent
xmlns:ns0="http://Enterprise.BizTalk.Canonical.Schemas/v2.0/ESB"
xmlns:ns1="http://Enterprise.BizTalk.MCF.Core.Schemas/v2.0/ESB">