标签:部分 mod xml文件 tap 元素 应用 知识 tar get
在Servlet2.5规范之前,Java Web应用的绝大部分组件都通过web.xml文件来配置管理,Servlet3.0规范可通过Annotation来配置管理Web组件,因此web.xml文件可以变得更加简洁,这也是Servlet3.0的重要简化。
两种方式
(1),通过web.xml配置
(2),使用@WebServlet Annotation进行配置
@WebServlet支持的常用属性:displayName,initParams,loadOnStartup,name,urlPatterns/value,asyncSupported
如果打算使用Annotation来配置Servlet,需要注意以下几点:
a,不要在web.xml文件的根元素(<web-app---/>)中指定metadata-complete=“true”;
b,不要在web.xml文件中配置该Servlet;
标签:部分 mod xml文件 tap 元素 应用 知识 tar get
原文地址:http://www.cnblogs.com/baorantHome/p/7236453.html