如何使用只有一个命名空间的大量xsd文件,并在IntelliJ Idea中查看工具提示?

时间:2012-12-22 09:19:58

标签: xml spring xsd intellij-idea

IntelliJ Idea 11.1.4中的工具提示存在一些问题

我有一个项目,我使用 spring 进行配置。

当我想在一个中编写很多xsd文件时,工具提示不起作用。我给你举个例子。 在 spring.schemas 中,我们有两条记录

http\://www.example.com/schema/test.xsd=test-schema.xsd
http\://www.example.com/schema/test-in.xsd=test-schema-in.xsd

测试架构in.xsd

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<xsd:schema xmlns="http://www.example.com/schema/test"
            xmlns:xsd="http://www.w3.org/2001/XMLSchema"
            xmlns:beans="http://www.springframework.org/schema/beans"
            targetNamespace="http://www.example.com/schema/test"
            elementFormDefault="qualified">

    <xsd:element name="name-element" type="type1"/>

    <xsd:complexType name="type1">
        <xsd:complexContent>
            <xsd:extension base="beans:identifiedType">
                <xsd:all>
                    <xsd:element name="name" type="xsd:string"/>
                </xsd:all>
            </xsd:extension>
        </xsd:complexContent>
    </xsd:complexType>

</xsd:schema>

测试schema.xsd

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<xsd:schema xmlns="http://www.example.com/schema/test"
            xmlns:xsd="http://www.w3.org/2001/XMLSchema"
            xmlns:beans="http://www.springframework.org/schema/beans"
            targetNamespace="http://www.example.com/schema/test"
            elementFormDefault="qualified">

    <xsd:include schemaLocation="http://www.example.com/schema/test-in.xsd"/>

    <xsd:element name="age-element" type="type2"/>

    <xsd:complexType name="type2">
        <xsd:complexContent>
            <xsd:extension base="beans:identifiedType">
                <xsd:all>
                    <xsd:element name="age" type="xsd:integer"/>
                </xsd:all>
            </xsd:extension>
        </xsd:complexContent>
    </xsd:complexType>

</xsd:schema>

我们有这么简单的xml文件

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:ex="http://www.example.com/schema/test"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
       http://www.springframework.org/schema/beans/spring-beans.xsd
       http://www.example.com/schema/test
       http://www.example.com/schema/test.xsd">

    <ex:age-element>
        <ex:age>
            3
        </ex:age>
    </ex:age-element>

    <ex:name-element>
        <ex:name >
            Simple Name
        </ex:name>
    </ex:name-element>

</beans>

在工具提示中,我可以看到 age-element ,但看不到 name-element

是否有一个解决方案可以将大量xsd文件与一个命名空间(包含include)一起使用,并查看创意工具提示中的元素 ??

0 个答案:

没有答案