web.xml配置整理

虽然是做web开发,但是web中的很多配置有的时候却不是很清楚,只是知道怎么配置,于是就把在网上看到各种关于web.xml的东西整理一下:

web.xml中url-pattern的3种写法 
1完全匹配

<url-pattern>/test/list.do</url-pattern>

2 路径匹配

<url-pattern>/*</url-pattern> <!--匹配根路径下的全部请求-->

3扩展名匹配

  <url-pattern>*.do</url-pattern><!--匹配全部.do结尾的请求-->
  <url-pattern>*.html</url-pattern> <!--匹配全部.html结尾的请求-->
  <url-pattern>*</url-pattern> <!--不能用*,否则报错-->

Filter 配置多个URL-PATTERN

原文参考(http://weidongke123-126-com.iteye.com/blog/1032546)

一、完全错误的方式

<filter>
	<filter-name>authority</filter-name>
	<filter-class>com.util.AuthorityFilter</filter-class>
</filter>
<filter-mapping>
	<filter-name>authority</filter-name>
	<url-pattern>/pages/cmm/*;/pages/genbill/*</url-pattern>
</filter-mapping>

二、有一定作用,但不能实现需要的效果,只会过滤最下面配置的url-pattern。

<filter>
	<filter-name>authority</filter-name>
	<filter-class>com.util.AuthorityFilter</filter-class>
</filter>
<filter-mapping>
	<filter-name>authority</filter-name>
	<url-pattern>/pages/cmm/*</url-pattern>
       <url-pattern>/pages/genbill/*</url-pattern>
</filter-mapping>

三、现在给出正确的配置方式

<filter>
	<filter-name>authority</filter-name>
	<filter-class>com.util.AuthorityFilter</filter-class>
</filter>
<filter-mapping>
	<filter-name>authority</filter-name>
       <url-pattern>/pages/genbill/*</url-pattern>
</filter-mapping>
<filter-mapping>
	<filter-name>authority</filter-name>
	<url-pattern>/pages/cmm/*</url-pattern>
</filter-mapping>

web.xml配置整理

时间: 2024-10-14 06:35:02

web.xml配置整理的相关文章

java web.xml配置详解

1.启动一个WEB项目的时候,WEB容器会去读取它的配置文件web.xml,读取<listener>和<context-param>两个结点. 2.紧急着,容创建一个ServletContext(servlet上下文),这个web项目的所有部分都将共享这个上下文. 3.容器将<context-param>转换为键值对,并交给servletContext. 4.容器创建<listener>中的类实例,创建监听器. 二  Load-on-startup Load

【Web.xml配置具体解释之context-param 】

转自:http://blog.csdn.net/liaoxiaohua1981/article/details/6759206 格式定义: [html] view plaincopy <context-param> <param-name>contextConfigLocation</param-name> <param-value>contextConfigLocationValue></param-value> </context

160329(二)、web.xml配置详解

1.启动一个WEB项目的时候,WEB容器会去读取它的配置文件web.xml,读取<listener>和<context-param>两个结点. 2.紧急着,容创建一个ServletContext(servlet上下文),这个web项目的所有部分都将共享这个上下文. 3.容器将<context-param>转换为键值对,并交给servletContext. 4.容器创建<listener>中的类实例,创建监听器. 二  Load-on-startup Load

web.xml 配置介绍

这个不是原创,有点早了,具体从哪里来的已经记不得了.但是东西是实实在在的. 1.启动一个WEB项目的时候,WEB容器会去读取它的配置文件web.xml,读取<listener>和<context-param>两个结点. 2.紧急着,容创建一个ServletContext(servlet上下文),这个web项目的所有部分都将共享这个上下文. 3.容器将<context-param>转换为键值对,并交给servletContext. 4.容器创建<listener&g

web.xml 配置applicationContext.xml

web.xml中classpath:和classpath*:  有什么区别? classpath:只会到你的class路径中查找找文件; classpath*:不仅包含class路径,还包括jar文件中(class路径)进行查找. 有时候会用模糊匹配的方式配置多配置文件. 但是如果配置文件是在jar包里,模糊匹配就找不到了.可以用逗号隔开的方式配置多个配置文件. 如: <listener>  <listener-class>org.springframework.web.conte

Spring MVC的web.xml配置详解(转)

出处http://blog.csdn.net/u010796790 1.spring 框架解决字符串编码问题:过滤器 CharacterEncodingFilter(filter-name) 2.在web.xml配置监听器ContextLoaderListener(listener-class) ContextLoaderListener的作用就是启动Web容器时,自动装配ApplicationContext的配置信息.因为它实现了ServletContextListener这个接口,在web.

maven工程web层的web.xml配置文档内容

下面是web层,web.xml配置文档里面需要配置的东西: 1.lo4j配置 2.读取spring文件配置 3.设计路径变量值 4.spring字符集过滤器 5.登陆过滤器 6.springMVC核心配置 7.session过期时间 8.错误页面跳转 以下是实例: <?xml version="1.0" encoding="UTF-8"?> <web-app xmlns:xsi="http://www.w3.org/2001/XMLSch

基于注解的Spring MVC(所需jar包,web.xml配置,Spring文件配置,@Controller,@RequestMapping,@RequestParam,model填參,EL取值)

1.加入jar 2.web.xml配置: <?xml version="1.0" encoding="UTF-8"? > <web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocati

struts2拦截器-自定义拦截器,放行某些方法(web.xml配置)

一.web.xml配置 <filter> <filter-name>encodingFilter</filter-name> <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class> <init-param> <param-name>encoding</param-name> <param-val