servlet的两种配置方式

Posted baorant

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了servlet的两种配置方式相关的知识,希望对你有一定的参考价值。

在Servlet2.5规范之前,Java Web应用的绝大部分组件都通过web.xml文件来配置管理,Servlet3.0规范可通过Annotation来配置管理Web组件,因此web.xml文件可以变得更加简洁,这也是Servlet3.0的重要简化。

两种方式

(1),通过web.xml配置

 

[html] view plain copy
 
  1.      <servlet>  
  2.         <servlet-name>GetApplication</servlet-name>  
  3.         <servlet-class>com.fpp.GetApplication</servlet-class>  
  4.         <!-- 通过servletConfig getInitParameter()取出参数 -->  
  5.     </servlet>  
  6.     <servlet-mapping>  
  7.         <servlet-name>GetApplication</servlet-name>  
  8.         <url-pattern>/GetApplication</url-pattern>  
  9.     </servlet-mapping>  



 

 

(2),使用@WebServlet Annotation进行配置

 

[java] view plain copy
 
  1. @WebServlet(name="GetApplication",urlPatterns="/GetApplication")  
  2. 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的两种配置方式的主要内容,如果未能解决你的问题,请参考以下文章

servlet的两种配置问题

解决springmvc拦截器拦截静态资源的两种方式

SpringBoot——SpringBoot中使用Servlet的两种方式

Servlet实现重定向的两种方式

SpringBoot——SpringBoot中设置字符集编码的两种方式

servlet之session添加和移除的两种方式