servlet的两种配置方式
Posted baorant
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了servlet的两种配置方式相关的知识,希望对你有一定的参考价值。
在Servlet2.5规范之前,Java Web应用的绝大部分组件都通过web.xml文件来配置管理,Servlet3.0规范可通过Annotation来配置管理Web组件,因此web.xml文件可以变得更加简洁,这也是Servlet3.0的重要简化。
两种方式
(1),通过web.xml配置
- <servlet>
- <servlet-name>GetApplication</servlet-name>
- <servlet-class>com.fpp.GetApplication</servlet-class>
- <!-- 通过servletConfig getInitParameter()取出参数 -->
- </servlet>
- <servlet-mapping>
- <servlet-name>GetApplication</servlet-name>
- <url-pattern>/GetApplication</url-pattern>
- </servlet-mapping>
(2),使用@WebServlet Annotation进行配置
- @WebServlet(name="GetApplication",urlPatterns="/GetApplication")
- public class GetApplication extends HttpServlet
@WebServlet支持的常用属性:displayName,initParams,loadOnStartup,name,urlPatterns/value,asyncSupported
如果打算使用Annotation来配置Servlet,需要注意以下几点:
a,不要在web.xml文件的根元素(<web-app---/>)中指定metadata-complete=“true”;
b,不要在web.xml文件中配置该Servlet;
以上是关于servlet的两种配置方式的主要内容,如果未能解决你的问题,请参考以下文章
SpringBoot——SpringBoot中使用Servlet的两种方式