单个文件中目标命名空间的多个<schemabindings>

时间:2017-10-13 13:34:18

标签: java maven jaxb wsdl maven-jaxb2-plugin

我使用maven-jaxb2-plugin从wsdl生成java文件。运行&#34; generate-sources&#34;目标我收到以下错误

[ERROR] Error while parsing schema(s).Location[
file:/home/*/src/main/resources/soap/binding.xjb{8,30} ]. 
com.sun.istack.SAXParseException2; systemId: file:/home/*/src/main/resources/soap/binding.xjb; lineNumber: 8; columnNumber: 30; 
Multiple <schemaBindings> are defined for the target namespace "http://schemas.***"

有几个wsdl文件,对于每个文件我需要不同的目标包,所以我尝试使用绑定文件,但现在只有1个wsdl。

这是我的插件configuraiton

<configuration>
    <schemaLanguage>WSDL</schemaLanguage>
    <schemaDirectory>
        ${basedir}/src/main/resources/soap
    </schemaDirectory>
    <schemaIncludes>
        <include>manager/*.wsdl</include>
    </schemaIncludes>
    <bindingDirectory>
        ${basedir}/src/main/resources/soap
    </bindingDirectory>
</configuration>

这是 binding.xjb 文件

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<jaxb:bindings
        version="2.1"
        xmlns:jaxb="http://java.sun.com/xml/ns/jaxb"
        xmlns:xs="http://www.w3.org/2001/XMLSchema">

    <jaxb:bindings schemaLocation="manager/service.wsdl" multiple="true" node="//xs:schema">
        <jaxb:schemaBindings>
            <jaxb:package name="com.test.manager"/>
        </jaxb:schemaBindings>
    </jaxb:bindings>
</jaxb:bindings>

service.wsdl 文件的开头

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<wsdl:definitions xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
                  xmlns:sch0="http://schemas.***"
                  xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
                  xmlns:tns="http://schemas.***"
                  targetNamespace="http://schemas.***">
    <wsdl:types>
        <xs:schema xmlns="http://schemas.***" 
                   xmlns:xs="http://www.w3.org/2001/XMLSchema" 
                   attributeFormDefault="unqualified" 
                   elementFormDefault="qualified" 
                   targetNamespace="http://schemas.***">
            <xs:simpleType name="NumericReference">
                ***
            </xs:simpleType> 
            <xs:simpleType name="EntityNumber">
                ***
            </xs:simpleType>
        </xs:schema>
        <xs:schema xmlns="http://schemas.***" 
                   xmlns:xs="http://www.w3.org/2001/XMLSchema" 
                   attributeFormDefault="unqualified" 
                   elementFormDefault="qualified" 
                   targetNamespace="http://schemas.***">
            <xs:complexType name="DisplayGroup">

看起来这个问题与多个具有相同targetNamespace的xs:schema元素有关,但我无法在不修改wsdl的情况下找到解决方法。

1 个答案:

答案 0 :(得分:1)

JAXB通常将一个目标命名空间映射到一个包,因此您不能为同一目标命名空间指定不同的schemaBindings