gpt4 book ai didi

maven - jaxb2-maven-plugin XJB : The namespace of element 'bindings' must be from the schema namespace' 错误

转载 作者:行者123 更新时间:2023-12-02 17:22:37 25 4
gpt4 key购买 nike

我正在尝试为不同的 xsd 文件分配不同的 namespace ,并使用 jaxb2-maven 插件来构建由这些 xsd 文件定义的 Artifact 。

Maven 无法生成源代码并出现以下错误:元素“绑定(bind)”的 namespace 必须来自架构 namespace “http://www.w3.org/2001/XMLSchema”

这是我的配置:

<jaxb:bindings 
xmlns:jaxb="http://java.sun.com/xml/ns/jaxb"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/jaxb
http://java.sun.com/xml/ns/jaxb/bindingschema_2_0.xsd"
version="2.1">

<jaxb:bindings schemaLocation="xsd/TheRequest.xsd" node="/xsd:schema">
<jaxb:schemaBindings>
<jaxb:package name="com.package.request" />
</jaxb:schemaBindings>
</jaxb:bindings>

<jaxb:bindings schemaLocation="xsd/TheResponse.xsd" node="/xsd:schema">
<jaxb:schemaBindings>
<jaxb:package name="com.package.response" />
</jaxb:schemaBindings>
</jaxb:bindings>

</jaxb:bindings>

<?xml version="1.0" encoding="UTF-8"?>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
targetNamespace="http://company.services.com"
xmlns:tns="http://company.services.com"
elementFormDefault="unqualified">

<xsd:complexType name="FindSomething">
<xsd:sequence>
<xsd:element name="TestMode" type="xsd:string" maxOccurs="1" minOccurs="0"/>
<xsd:element name="Channel" type="xsd:string" maxOccurs="1" minOccurs="1"/>
<xsd:element name="UserId" type="xsd:string" maxOccurs="1" minOccurs="1"/>
<xsd:element name="Role" type="xsd:string" maxOccurs="1" minOccurs="0"/>
<xsd:element name="Format" type="xsd:string" maxOccurs="1" minOccurs="0"/>
<xsd:element name="OrgId" type="xsd:string" maxOccurs="1" minOccurs="1"/>
<xsd:element name="TransactionId" type="xsd:string" maxOccurs="1" minOccurs="1"/>
<xsd:element name="Timeout" type="xsd:long" maxOccurs="1" minOccurs="0"/>
<xsd:element name="RequestSegments" type="tns:RequestSegments" maxOccurs="1" minOccurs="0"/>
<xsd:element name="VerifyUserType" type="xsd:string" maxOccurs="1" minOccurs="0"/>
<xsd:element name="VerifyUserAccess" type="xsd:string" maxOccurs="1" minOccurs="0"/>
<xsd:element name="IncludeFamily" type="xsd:string" minOccurs="0" maxOccurs="1"/>
<xsd:element name="AsOfDate" type="xsd:string" maxOccurs="1" minOccurs="0"/>
<xsd:element name="ActiveOnly" type="xsd:string" maxOccurs="1" minOccurs="0"/>
<xsd:element name="SearchType" type="xsd:string" maxOccurs="1" minOccurs="0"/>
<xsd:element name="SearchCriteria" type="tns:SearchCriteria" maxOccurs="1" minOccurs="0"/>
<xsd:element name="AccessPrivileges" type="tns:AccessPrivileges" maxOccurs="1" minOccurs="0"/>
</xsd:sequence>
</xsd:complexType></xsd:schema>

我尝试过不同形式的 XML 命名空间指令。在 Eclipse 代码完成中,我可以看到绑定(bind) XML 模式作为一个选项,所以我不知道为什么 maven 返回此错误。

最佳答案

maven jaxb2 插件正在其源路径中查找您的绑定(bind)文件,并假设它是一个 xsd 文件。您必须通过移动它、更新您的 xsd/xjb 源路径或添加排除过滤器来排除它。

最简单的选择可能是更新插件配置中的路径:

<configuration>
<sources>
<!-- only xsd files under here -->
<source>src/main/xjb/xsd</source>
</sources>
<xjbSources>
<!-- specify binding file explicitly -->
<xjbSource>src/main/xjb/bindings.xjb</xjbSource>
</xjbSources>
</configuration>

您的绑定(bind)文件也有问题:您需要映射您在 node 属性中使用的命名空间前缀。将 xmlns:xsd="http://www.w3.org/2001/XMLSchema" 添加到根元素。

配置选项在 jaxb2:xjc 的文档中有详细说明。目标。

关于maven - jaxb2-maven-plugin XJB : The namespace of element 'bindings' must be from the schema namespace' 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41557306/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com