Servlet版本区别
Servlet2.3版本web-app里的标签有一定的顺序(servlet和servlet-mapping),开发不方便
Servlet2.4以上版本即可解决上面问题。但是2.4及以下版本会有一个问题:(多个url不能映射到同一个servlet)
Servlet2.5以上版本即可解决多个url不能映射到同一个servlet的问题。
Servlet3.0随J2EE6一起发布,web.xml配置文件中包含: 默认页配置、session超时配置和错误提示页配置。
1.如果我们直接改的话会出现错误
2.window->show view->navigator
3.找到文件然后改成3.0
4把web.xml的文件替换掉,替换成3.0的
<?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" 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>spring</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>