Tomcat
实现了Java Servlet
规范,Java Servlet Pages
技术,不同版本的Tomcat
支持不同的Servlet
及JSP
规范.
- 最新示例图如下所示 :
不同版本的web.xml
写法如下 :
web.xml v2.3
1
2
3
4
5
<web-app>
<!-- ... -->
</web-app>web.xml v2.4
1
2
3
4
5
<web-app id="WebApp_9" version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
</web-app>web.xml v2.5
1
2
3
4
5
<web-app xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" version="2.5">
</web-app>web.xml 3.0
1
2
3
4
5
6
7
<web-app
version="3.0"
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">
</web-app>web.xml 4.0
1
2
3
4
5
6
7
8
<web-app
version="4.0"
xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd">
</web-app>
All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.
Comment