建议先看看 ——> Servlet工作原理

一、Listener

在Tomcat服务中,Listener的设计是基于观察者模式的,目前在Servlet中提供6中两类事件的观察者接口,它们分别是:

实际上这六个Listener都继承了EvenListener,每个Listener由分别定义了自己需要实现的接口:

ServletContextAttributeListener:

public interface ServletContextAttributeListener extends EventListener {

    // 设置属性时
public default void attributeAdded(ServletContextAttributeEvent scae) {
} // 删除属性时
public default void attributeRemoved(ServletContextAttributeEvent scae) {
} // 、更改属性时
public default void attributeReplaced(ServletContextAttributeEvent scae) {
}
}

ServletRequestAttributeListener:

public interface ServletRequestAttributeListener extends EventListener {

    // 更改Request属性时
public default void attributeAdded(ServletRequestAttributeEvent srae) {
} // 更改Request属性时
public default void attributeRemoved(ServletRequestAttributeEvent srae) {
} // 更改Request属性时
public default void attributeReplaced(ServletRequestAttributeEvent srae) {
}
}

HttpSessionAttributeListener:

public interface HttpSessionAttributeListener extends EventListener {

    // 添加 Session 属性时
public default void attributeAdded(HttpSessionBindingEvent se) {
} // 删除 Session 属性时
public default void attributeRemoved(HttpSessionBindingEvent se) {
} // 更改 Session 属性时
public default void attributeReplaced(HttpSessionBindingEvent se) {
}
}
ServletRequestAttributeListener:
public interface ServletRequestAttributeListener extends EventListener {

    public default void attributeAdded(ServletRequestAttributeEvent srae) {
} public default void attributeRemoved(ServletRequestAttributeEvent srae) {
} public default void attributeReplaced(ServletRequestAttributeEvent srae) {
}
}

ServletContextListener:

public interface ServletContextListener extends EventListener {

    // StandardConetxt 创建时
public default void contextInitialized(ServletContextEvent sce) {
} // StandardConetxt 销毁时
public default void contextDestroyed(ServletContextEvent sce) {
}
}

HttpSessionListener:

public interface HttpSessionListener extends EventListener {

    public default void sessionCreated(HttpSessionEvent se) {
} public default void sessionDestroyed(HttpSessionEvent se) {
}
}

二、Filter

Filter可以完成和Servlet同样的工作,除了request和response两个对象外,它还提供了一个FilterChain对象,它可以帮助我们更加灵活地控制请求的流程,该接口定义如下:

Filter:

public interface Filter {

    // 初始化接口,在用户定义的Filter初始化时被调用,它与Servlet的init方法是一样的,
// FilterConfig也和ServletConfig类似,除了可以获取ServletContext之外,还可以在配置文件中声明参数
public default void init(FilterConfig filterConfig) throws ServletException {} // 每个用户的匹配请求进来时,这个方法都被调用,并且是在Servlet的service方法之前被调用,
// 而 FilterChain代表了当前的整个请求链,通过调用FilterChain.doFilter可以将请求继续传递下去,
// 如果需要拦截该请求,那么就不调用FilterChain,就可以直接返回了,所以它是一种责任链模式
public void doFilter(ServletRequest request, ServletResponse response,
FilterChain chain) throws IOException, ServletException; // Filter被销毁时,会调用这个方法,web容器调用这个方法之后,容器会再调用一次doFilter方法
public default void destroy() {}
}

除此之外还有两个接口的定义,分别FilterConfig 和FilterChain

FilterConfig:

public interface FilterConfig {

    /**
* Get the name of the filter.
*
*/
public String getFilterName(); /**
* Returns a reference to the {@link ServletContext} in which the caller is
* executing.
*
*/
public ServletContext getServletContext(); /**
* Returns a <code>String</code> containing the value of the named
* initialization parameter, or <code>null</code> if the parameter does not
* exist.
*
*/
public String getInitParameter(String name); /**
* Returns the names of the filter's initialization parameters as an
*/
public Enumeration<String> getInitParameterNames(); }

FilterChain:

public interface FilterChain {

    /**
* Causes the next filter in the chain to be invoked, or if the calling
* filter is the last filter in the chain, causes the resource at the end of
* the chain to be invoked.
*
*/
public void doFilter(ServletRequest request, ServletResponse response)
throws IOException, ServletException; }

三、<url-pattern>匹配规则

    • 精确匹配:如/foo/.html,只能匹配/foo.html
    • 路径匹配:如/foo/*,将匹配/foo/路径下所有的URL
    • 后缀匹配:如*.html,将匹配所有所有的后缀为.html的路径

匹配的顺序也是:精确匹配——> 最长路径匹配——>后缀匹配

[web]Servlet中的Listener和Filter的更多相关文章

  1. web.xml 中的listener、 filter、servlet 加载顺序及其详解

    在项目中总会遇到一些关于加载的优先级问题,近期也同样遇到过类似的,所以自己查找资料总结了下,下面有些是转载其他人的,毕竟人家写的不错,自己也就不重复造轮子了,只是略加点了自己的修饰. 首先可以肯定的是 ...

  2. web.xml 中的listener、 filter、servlet 加载顺序

    在项目中总会遇到一些关于加载的优先级问题,近期也同样遇到过类似的,所以自己查找资料总结了下,下面有些是转载其他人的,毕竟人家写的不错,自己也就不重复造轮子了,只是略加点了自己的修饰. 首先可以肯定的是 ...

  3. web.xml 中的listener、filter、servlet 加载顺序及其【配置详解】

    在项目中总会遇到一些关于加载的优先级问题,近期也同样遇到过类似的,所以自己查找资料总结了下,下面有些是转载其他人的,毕竟人家写的不错,自己也就不重复造轮子了,只是略加点了自己的修饰. 首先可以肯定的是 ...

  4. 转:web.xml 中的listener、 filter、servlet 加载顺序及其详解

    在项目中总会遇到一些关于加载的优先级问题,刚刚就遇到了一个问题,由于项目中使用了quartz任务调度,quartz在web.xml中是使用listener进行监听的,使得在tomcat启动的时候能马上 ...

  5. web.xml 中的listener、 filter、servlet 加载顺序及其详解(转)

    在项目中总会遇到一些关于加载的优先级问题,近期也同样遇到过类似的,所以自己查找资料总结了下,下面有些是转载其他人的,毕竟人家写的不错,自己也就不重复造轮子了,只是略加点了自己的修饰. 首先可以肯定的是 ...

  6. [Java][Web] Servlet中转发和重定向比较

    Servlet中页面跳转的两种方式 请求转发 使用requestDispatcher对象 request.getRequestDispatcher("path").forward( ...

  7. web.xml中自定义Listener

    Listener可以监听容器中某一执行动作,并根据其要求做出相应的响应. 常用的Web事件的监听接口如下: ServletContextListener:用于监听Web的启动及关闭 ServletCo ...

  8. Java Web servlet中的cookie

    点击submit后: 点击查看Cookies: 在C:\Documents and Settings\Administrator\Cookies目录下面会有一个     hongten@webproj ...

  9. 一个web项目中web.xml<context-param>的作用

    转   <context-param>的作用:web.xml的配置中<context-param>配置作用1. 启动一个WEB项目的时候,容器(如:Tomcat)会去读它的配置 ...

随机推荐

  1. android-tip-关于SpannableString的使用

    如果想单独设置TextView上其中几个字的样式,该怎么办? 答案是使用SpannableString. 使用SpannableString可以为TextView上的某字或某些字设置: 前景色(For ...

  2. svn: Can't connect to host

    关于“svn: Can't connect to host '*.*.*.*': 由于连接方在一段时间后没有正确答复或连接”的解决方法   阿里云服务器环境(PHP+Nginx+MySQL) [原因1 ...

  3. Opencv Convex Hull (凸包)

    #include <iostream>#include <opencv2/opencv.hpp> using namespace std;using namespace cv; ...

  4. Mac shell使用技巧总结(转)

    1.文件操作 常用目录 /Systme/Library/Extensions // 驱动所在目录 /User/XXX/Desktop // 桌面目录 资源库 chflags nohidden ~/Li ...

  5. ubuntu 14.04 Clion2016.2 安装激活与安装后添加快捷启动方式

    参考链接:http://www.cnblogs.com/conw/p/5938113.html 下载clion for linux : http://www.jetbrains.com/clion/d ...

  6. Sprig 面试中 问及 DI,IOC, AOP

    面向切面编程,把散落在程序中的公共部分提取出来,做成切面类,这样的好处在于,代码的可重用,一旦涉及到该功能的需求发生变化,只要修改该代码就行,否则,你要到处修改,如果只要修改1.2处那还可以接受,万一 ...

  7. Ubuntu14.04-LTS 从系统安装到配置可用

    1.安装Ubuntu14.04LTS-64bit 使用U盘安装很方便快捷,可以使用老毛桃使用iso模式制作一个U盘启动盘,然后分区安装. 如果使用硬盘安装的话需要注意的问题是: 如果电脑上以前有Lin ...

  8. 编写高质量代码改善C#程序的157个建议——建议68:从System.Exception或其他常见的基本异常中派生异常

    建议68:从System.Exception或其他常见的基本异常中派生异常 微软建议:从System.Exception或其他常见基本异常之一派生异常.在Visual Studio中输入Excepti ...

  9. 【小梅哥FPGA进阶教程】MC8051软核在FPGA上的使用

    十.MC8051软核在FPGA上的使用 本教程内容力求以详细的步骤和讲解让读者以最快的方式学会 MC8051 IP core 的应用以及相关设计软件的使用,并激起读者对 SOPC 技术的兴趣.本实验重 ...

  10. 《T-SQL查询》- SQL逻辑处理

    下面列出SQL查询语句的一般形式,以及各个子句被逻辑处理的顺序步骤: (8) SELECT (9) DISTINCT (11) <TOP_specification> <select ...