web.xml的详细配置以及加载过程

理论学习

1.常见的基本配置详解


<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">
         
    
    <icon>icon>
    
    
    <display-name>display-name>
    
    
    <description>description>
    
    
    <context-param>context-param>
    
    
    <filter>filter>
    
    
    <filter-mapping>filter-mapping>
    
    
    <listener>listener>
    
    
    <servlet>servlet>
    
    
    <servlet-mapping>servlet-mapping>
    
    
    <session-config>session-config>
    
    
    <mime-mapping>mime-mapping>
    
    
    <welcome-file-list>welcome-file-list>
    
    
    <error-page>error-page>
    
    
    <resource-env-ref>resource-env-ref>
    
    
    <resource-ref>resource-ref>
    
    
    <security-constraint>security-constraint>
    
    
    <login-config>login-config>

    
    <security-role>security-role>

    
    <env-entry>env-entry>
    
    
    <ejb-ref>ejb-ref>
    
    
    <ejb-local-ref>ejb-local-ref>

web-app>

2.配置加载过程
  首先可以肯定的是,加载顺序与它们在 web.xml 文件中的先后顺序无关。即不会因为 filter 写在 listener的前面而会先加载 filter。最终得出的结论是:ServletContext-> listener ->filter -> servlet
  同时还存在着这样一种配置节:context-param,它用于向 ServletContext提供键值对,即应用程序上下文信息。我们的 listener, filter 等在初始化时会用到这些上下文中的信息,那么context-param 配置节是不是应该写在 listener 配置节前呢?实际上 context-param配置节可写在任意位置,因此真正的加载顺序为:context-param -> listener-> filter -> servlet
  对于某类配置节而言,与它们出现的顺序是有关的。以filter 为例,web.xml 中当然可以定义多个 filter,与 filter 相关的一个配置节是filter-mapping,这里一定要注意,对于拥有相同 filter-name 的 filter 和 filter-mapping配置节而言,filter-mapping 必须出现在 filter 之后,否则当解析到 filter-mapping 时,它所对应的filter-name 还未定义。web 容器启动时初始化每个 filter 时,是按照 filter配置节出现的顺序来初始化的,当请求资源匹配多个 filter-mapping 时,filter 拦截资源是按照filter-mapping 配置节出现的顺序来依次调用 doFilter() 方法的。
  servlet 同 filter类似,此处不再赘述。
  由此,可以看出,web.xml 的加载顺序是:ServletContext-> context-param ->listener -> filter -> servlet,而同个类型之间的实际程序调用的时候的顺序是根据对应的 mapping 的顺序进行调用的。
3.参考资料及其细节:
  (1).https://www.cnblogs.com/hxsyl/p/3435412.html
  (2).http://www.cnblogs.com/ClassNotFoundException/p/6641867.html

你可能感兴趣的:(Javaweb,Spring)