IntelliJ Idea 11.1.4 のツールチップに問題があります
構成に春を使用するプロジェクトがあります。
多数の xsd ファイルを 1 つにまとめたい場合、ツールチップが機能しません。例を示します。spring.schemaには 2 つのレコードがあります
http\://www.example.com/schema/test.xsd=test-schema.xsd
http\://www.example.com/schema/test-in.xsd=test-schema-in.xsd
test-schema-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>
テストスキーマ.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は表示されません。
1 つの名前空間 (インクルードあり) で多くの xsd ファイルを使用し、アイデアのツールチップで要素を表示するソリューションはありますか??