在符合 J2EE Web 应用程序 2.4 版的 web.xml 中的元素中是否可以有多个元素,如下所示:
<filter-mapping>
<filter-name>SomeFilter</filter-name>
<url-pattern>*.htm</url-pattern>
<url-pattern>*.do</url-pattern>
</filter-mapping>
我从这里查找了 XSD“web-app_2_4.xsd”文件:http: //java.sun.com/xml/ns/j2ee/web-app_2_4.xsd ,定义如下所示:
<xsd:complexType name="filter-mappingType">
<xsd:annotation>
<xsd:documentation>
some documentation here
</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="filter-name"
type="j2ee:filter-nameType"/>
<xsd:choice>
<xsd:element name="url-pattern"
type="j2ee:url-patternType"/>
<xsd:element name="servlet-name"
type="j2ee:servlet-nameType"/>
</xsd:choice>
<xsd:element name="dispatcher"
type="j2ee:dispatcherType"
minOccurs="0" maxOccurs="4"/>
</xsd:sequence>
<xsd:attribute name="id" type="xsd:ID"/>
</xsd:complexType>
URL 模式定义如下所示:
所以我认为,我们可以在元素中有多个元素。然而,我的 Eclipse IDE 似乎并不同意我的观点,并且需要一个“调度程序”标签。
见图片: