对XML Schema不熟,遇到一点疑问,请各位DD给讲解下,谢谢!在web.xml下看到下面的一段话:<web-app xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="2.4" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee   http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
一问:其中:xml:schemaLocation下为什么要给两个地址呢?只给http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd这个
     地址不行吗?二问:我打开http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd看了下,为什么里面没有像dtd中定义的那些元素,比如,
      web-app_2_3.dtd中有如下定义:<!ELEMENT web-app (icon?, display-name?, description?, distributable?,
context-param*, filter*, filter-mapping*, listener*, servlet*,
servlet-mapping*, session-config?, mime-mapping*, welcome-file-list?,
error-page*, taglib*, resource-env-ref*, resource-ref*, security-constraint*,
login-config?, security-role*, env-entry*, ejb-ref*,  ejb-local-ref*)>
三问:web-app_2_3.dtd中怎么没有<jsp-config>这个元素?我要在哪里才找得到<jsp-config>?
      官网上没有找到web-app_2_4.dtd。但是在web-app_2_4.xsd下我也没有找到啊。