0

2.5 xsd and 3.0 xsd. Why there are 2 xsd?

Project Spec:
    Server info: Apache Tomcat/7.0.27
     Servlet version: 3.0
     JSP version: 2.1
     Java version: 1.6.0_32


<?xml version="1.0" encoding="UTF-8"?>
<web-app 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
xmlns="http://java.sun.com/xml/ns/javaee" 
xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" 
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" 
id="WebApp_ID" version="3.0">
  <display-name>MyFirstApp</display-name>
  <welcome-file-list>
    <welcome-file>index.html</welcome-file>
    <welcome-file>index.htm</welcome-file>
    <welcome-file>index.jsp</welcome-file>
    <welcome-file>default.html</welcome-file>
    <welcome-file>default.htm</welcome-file>
    <welcome-file>default.jsp</welcome-file>
  </welcome-file-list>
</web-app>
4

1 回答 1

3

因为您的 Web.xml 的自动生成器(您使用?生成此代码?)为您的 xmlns:web 和您的 xsi:schemaLocation 选择了最后一个更好的版本。

我认为在 web.xml 的 2 个元素上有不同的 xsd 版本不是问题。如果您有问题,请转到 2.5 版本。

我看到你正在使用 JSP,也许看看 JSF2.0 + Primefaces 3.2 更好?

于 2012-05-31T07:49:02.917 回答