Web.xml 配置详解

在项目中总会遇到一些关于加载的优先级问题,近期也同样遇到过类似的.

首先可以肯定的是,加载顺序与它们在 web.xml 文件中的先后顺序无关。即不会因为 filter 写在 listener 的前面而会先加载 filter。最终得出的结论是: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 的加载顺序是:context-param -> listener -> filter -> servlet ,而同个类型之间的实际程序调用的时候的顺序是根据对应的 mapping 的顺序进行调用的。


1、display-name description

_____________________________________________

<display-name>Develop Example</display-name>   项目名称

<description>JSP 2.0 Tech Book's Examples</description> 项目描述


2、welcome-file-list

_____________________________________________
<welcome-file-list>
       welcome-file-list包含一个子元素welcome-file.用来定义首页列单.
     <welcome-file>用来指定首页文件名称</welcome-flie>
welcome-file用来指定首页文件名称.我们可以用<welcome-file>指定几个首页,而服务器会依照设定的顺序来找首页.
范例:
<welcome-file-list>
   <welcome-file>index.jsp</welcome-file>
   <welcome-file>index.htm</welcome-file>
</welcome-file-list>

3、session-config

_____________________________________________

<session-config>
     session-config包含一个子元素session-timeout.定义web站台中的session参数.
    <session-timeout>分钟</session-timeout> 定义这个web站台所有session的有效期限.单位为分钟.
</session-config>
范例:
<session-config>
    <session-timeout>20</session-timeout>
</session-config>

4、error-page

_____________________________________________

<error-page>
     error-page元素包含三个子元素error-code,exception-type和location.将错误代码(Error Code)或异常(Exception)的种类对应
      到web站台资源路径.
      <error-code>错误代码</error-code>    HTTP Error code,例如: 404
      <exception-type>Exception</exception-type>     一个完整名称的Java异常类型
      <location>/路径</location>     在web站台内的相关资源路径
</error-page>
范例:
<error-page>
    <error-code>404</error-code>
    <location>/error404.jsp</location>
</error-page>
<error-page>
    <exception-type>java.lang.Exception</exception-type>
    <location>/except.jsp</location>
</error-page>

5、servlet-mapping

_____________________________________________

<servlet-mapping元素包含两个子元素servlet-name和url-pattern.用来定义servlet所对应URL.
     <servlet-name>Servlet的名称</servlet-name>定义Servlet的名称.
     <url-pattern>Servlet URL</url-pattern>  定义Servlet所对应的RUL.例如:<url-pattern>/Servlet/Hello</url-pattern>
</servlet-mapping>
范例:
<servlet-mapping>
    <servlet-name>LoginChecker</servlet-name>
    <url-pattern>/LoginChecker</url-pattern>
</servlet-mapping>

6、context-param

_____________________________________________

<context-param>
context-param 元素用来设定web站台的环境参数(context),它包含两个子元素:  param-name和param-value.
<param-name>参数名称</param-name>    -- 设定Context名称
<param-value>值</param-value>          --- 设定Context名称的值
</context-param>
范例:
<context-param>
    <param-name>param_name</param-name>
    <param-value>param_value</param-value>
</context-param>
此所设定的参数,在JSP网页中可以使用下列方法来取得:
${initParam.param_name}
若在Servlet可以使用下列方法来获得:
String param_name=getServletContext().getInitParamter("param_name");

7、filter、filter-mapping

_____________________________________________

filter-mapping 元素的两个主要子元素filter-name和url-pattern.用来定义Filter所对应的URL.

<filter>
      <filter-name>PrivFilter</filter-name>
      <filter-class>com.myPriv.filter.PrivFilter</filter-class>
   </filter>

<filter-mapping>
    <filter-name>PrivFilter</filter-name>
    <url-pattern>/resource/*</url-pattern>
</filter-mapping>

在过滤器程序中判断到resource目录下的请求的用户session是否为空,如果空的话就跳转出去;


8、listener

_____________________________________________

<listener>
listener元素用来定义Listener接口,它的主要子元素为<listener-class>
<listen-class>Listener的类名称</listener-class>  --- 定义Listener的类名称.例如: com.foo.hello
<listener>
范例:

<!-- 配置Listener-->  

<listener>

    <!-- 指定Listener 的实现类-->  
   <listener-class>com.javaworld.ContenxtListener</listener-class>
</listener>

9、servlet-mapping

_____________________________________________

servlet-mapping元素包含两个子元素servlet-name和url-pattern.用来定义servlet所对应URL.
<servlet-name>Servlet的名称</servlet-name>  --- 定义Servlet的名称.
<url-pattern>Servlet URL</url-pattern>   --- 定义Servlet所对应的RUL.例如:<url-pattern>/Servlet/Hello</url-pattern>
</servlet-mapping>
范例:
<servlet-mapping>
    <servlet-name>LoginChecker</servlet-name>
    <url-pattern>/LoginChecker</url-pattern>
</servlet-mapping>

10、session-cofing

_____________________________________________

<session-config>
session-config包含一个子元素session-timeout.定义web站台中的session参数.
<session-timeout>分钟</session-timeout>
定义这个web站台所有session的有效期限.单位为分钟.
</session-config>
范例:
<session-config>
    <session-timeout>20</session-timeout>
</session-config>

11、jsp-config

_____________________________________________

<jsp-config>
jsp-config元素主要用来设定JSP的相关配置,<jsp:config>包括<taglib>和<jsp-property-group>两个子元素.其中<taglib>元素
在JSP 1.2时就已经存在了;而<jsp-property-group>是JSP 2.0新增的元素.

<taglib>
taglib元素包含两个子元素taglib-uri和taglib-location.用来设定JSP网页用到的Tag Library路径.
<taglib-uri>URI</taglib-uri>
    taglib-uri定义TLD文件的URI,JSP网页的taglib指令可以经由这个URI存取到TLD文件.
<taglib-location>/WEB-INF/lib/xxx.tld</taglib-laction>
    TLD文件对应Web站台的存放位置.
</taglib>

<jsp-property-group>
jsp-property-group元素包含8个元素,分别为:
<description>Description</descrition>
此设定的说明

<display-name>Name</display-name>
此设定的名称

<url-pattern>URL</url-pattern>
设定值所影响的范围,如:/CH2 或者/*.jsp

<el-ignored>true|false</el-ignored>
若为true,表示不支持EL语法.

<scripting-invalid>true|false</scripting-invalid>
若为true表示不支持<%scription%>语法.

<page-encoding>encoding</page-encoding>
设定JSP网页的编码

<include-prelude>.jspf</include-prelude>
设置JSP网页的抬头,扩展名为.jspf

<include-coda>.jspf</include-coda>
设置JSP网页的结尾,扩展名为.jspf
</jsp-property-group>
</jsp-config>
范例:
<jsp-config>
<taglib>
    <taglib-uri>Taglib</taglib-uri>
    <taglib-location>/WEB-INF/tlds/MyTaglib.tld</taglib-location>
</taglib>
<jsp-property-group>
    <description>
       Special property group for JSP Configuration JSP example.
    </description>
    <display-name>JSPConfiguration</display-name>
    <uri-pattern>/*</uri-pattern>
    <el-ignored>true</el-ignored>
    <page-encoding>GB2312</page-encoding>
    <scripting-inivalid>true</scripting-inivalid>
    ............
</jsp-property-group>
</jsp-config>


12、resource-ref

_____________________________________________

<resource-ref>
resource-ref元素包括五个子元素description,res-ref-name,res-type,res-auth,res-sharing-scope.利用JNDI取得站台可
利用资源.
<description>说明</description>
资源说明

<rec-ref-name>资源名称</rec-ref-name>
资源名称

<res-type>资源种类</res-type>
资源种类

<res-auth>Application|Container</res-auth>
资源由Application或Container来许可

<res-sharing-scope>Shareable|Unshareable</res-sharing-scope>
资源是否可以共享.默认值为 Shareable
范例:
<resource-ref>
    <description>JNDI JDBC DataSource of JSPBook</description>
    <res-ref-name>jdbc/sample_db</res-ref-name>
    <res-type>javax.sql.DataSoruce</res-type>
    <res-auth>Container</res-auth>
</resource-ref>


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值