0

在下面的模式文件中,我有一个Stat扩展Entity. 据我所知,我遵循 w3 的示例,但是当我通过 java 解析架构(以及使用架构的 xml)时DocumentBuilderFactorySchemaFactory我得到了这个异常:

org.xml.sax.SAXParseException; systemId: file:/schema/characterschema.xsd; 
    src-resolve.4.2: Error resolving component 'cg:Entity'. It was detected that
    'cg:Entity' is in namespace 'http://www.schemas.theliraeffect.com/chargen/entity',
    but components from this namespace are not referenceable from schema document
    'file:/home/andrew/QuasiWorkspace/CharacterGenerator/./schema/characterschema.xsd'.
    If this is the incorrect namespace, perhaps the prefix of 'cg:Entity' needs
    to be changed. If this is the correct namespace, then an appropriate 'import'
    tag should be added to '/schema/characterschema.xsd'.

因此,似乎我在架构中看不到我的命名空间。我是否需要将我的架构导入到自身中,还是我完全误读了这个异常?难道是我错误地声明了我的架构?

这是我的参考架构:

<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
    xmlns:cg="http://www.schemas.theliraeffect.com/chargen/entity"
    elementFormDefault="qualified">

    <xs:element name="Entity">
        <xs:complexType>
            <xs:attribute name="id" type="xs:string" use="required"/>                    
            <xs:attribute name="name" type="xs:string"/>
            <xs:attribute name="description" type="xs:string"/>
        </xs:complexType>
    </xs:element>

    <xs:element name="Stat">
        <xs:complexType>
            <xs:complexContent>
                <xs:extension base="cg:Entity">
                    <xs:sequence>
                        <xs:element name="table" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>                        
                    </xs:sequence>
                </xs:extension>
            </xs:complexContent>
        </xs:complexType>
    </xs:element>
</xs:schema>
4

1 回答 1

1

您的架构有两个问题。首先,您没有声明 a targetNamespace,因此您定义的EntityandStat元素不在命名空间中。其次,一个类型不能扩展一个元素,只能扩展另一个类型。

<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
    xmlns:cg="http://www.schemas.theliraeffect.com/chargen/entity"
    targetNamespace="http://www.schemas.theliraeffect.com/chargen/entity"
    elementFormDefault="qualified">

    <xs:complexType name="EntityType">
        <xs:attribute name="id" type="xs:string" use="required"/>                    
        <xs:attribute name="name" type="xs:string"/>
        <xs:attribute name="description" type="xs:string"/>
    </xs:complexType>

    <xs:element name="Entity" type="cg:EntityType" />


    <xs:complexType name="StatType">
        <xs:complexContent>
            <xs:extension base="cg:EntityType">
                <xs:sequence>
                    <xs:element name="table" type="xs:string" minOccurs="0"
                           maxOccurs="unbounded"/>                        
                </xs:sequence>
            </xs:extension>
        </xs:complexContent>
    </xs:complexType>

    <xs:element name="Stat" type="cg:StatType" />
</xs:schema>

在这里,我定义了两种类型,其中一种扩展了另一种,以及各自类型的两个顶级元素。所有顶级类型和元素都定义targetNamespace在模式中,并且内部的嵌套table元素StatType也在此命名空间中,因为elementFormDefault="qualified"- 没有 thisEntityStat元素将在http://www.schemas.theliraeffect.com/chargen/entity命名空间中,但table元素将不在命名空间中。

于 2012-08-31T17:28:01.290 回答