美文网首页SpringBoot
SpringBoot 的过滤器、监听器、拦截器

SpringBoot 的过滤器、监听器、拦截器

作者: 帅大叔的简书 | 来源:发表于2019-07-01 14:25 被阅读10次

一、添加依赖

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-web</artifactId>
</dependency>

二、过滤器 的创建

(1)、创建自己的过滤器类实现javax.servlet.Filter接口

(2)、重写doFilter 的方法,在此方法里写过滤操作

(3)、在类上使用注解@WebFilter(filterName="myFilter",urlPatterns={"/*"})

三、监听器 的创建

(1)、创建自己的监听类实现 ServletContextListener 接口,这个是监听servlet的

(2)、创建自己的监听类实现 HttpSessionListener 接口,这个是监听session 的

(3)、记得在自定义的监听类上添加注解@WebListener

四、拦截器 的创建

(1)、创建自己的拦截器类,实现HandlerInterceptor 接口

(2)、创建一个配置类,继承自WebMvcConfigurerAdapter ,并在类上添加注解@Configuration

(3)、重写addInterceptors方法,把自定义的拦截类注册进去。

五、代码示例

(1)、过滤器

/**
 * 
 * 使用注解标注过滤器
 * @WebFilter将一个实现了javax.servlet.Filter接口的类定义为过滤器
 * 属性filterName 声明过滤器的名称,可选
 * 属性urlPatterns指定要过滤 的URL模式,这是一个数组参数,可以指定多个。也可使用属性value来声明.(指定要过滤的URL模式是必选属性)
 */
@WebFilter(filterName="myFilter",urlPatterns={"/*"})
public class MyFilter implements Filter{
 
    @Override
    public void destroy() {
        System.out.println("myfilter 的 销毁方法");
    }
 
    @Override
    public void doFilter(ServletRequest arg0, ServletResponse arg1, FilterChain chain)
            throws IOException, ServletException {
        System.out.println("myfilter 的 过滤方法。这里可以执行过滤操作");
        //继续下一个拦截器
        chain.doFilter(arg0, arg1);
    }
 
    @Override
    public void init(FilterConfig arg0) throws ServletException {
        System.out.println("myfilter 的 初始化方法");
    }
 
}

(2)、拦截器

a)、自定义拦截器
public class MyInterceptor implements HandlerInterceptor{
 
    @Override
    public void afterCompletion(HttpServletRequest arg0, HttpServletResponse arg1, Object arg2, Exception arg3)
            throws Exception {
        System.out.println("MyInterceptor 在整个请求结束之后被调用,也就是在DispatcherServlet 渲染了对应的视图之后执行");
    }
 
    @Override
    public void postHandle(HttpServletRequest arg0, HttpServletResponse arg1, Object arg2, ModelAndView arg3)
            throws Exception {
        System.out.println("MyInterceptor  请求处理之后进行调用,但是在视图被渲染之前(Controller方法调用之后)");    
    }
 
    @Override
    public boolean preHandle(HttpServletRequest arg0, HttpServletResponse arg1, Object arg2) throws Exception {
        System.out.println("MyInterceptor 在请求处理之前进行调用(Controller方法调用之前)这里是拦截的操作");
        return true;
    }
 
}
b)、注册拦截器 继承 WebMvcConfigurerAdapter
@Configuration
public class WebConfigurer extends WebMvcConfigurerAdapter {
 
    @Override
    public void addInterceptors(InterceptorRegistry registry) {
         // addPathPatterns 用于添加拦截规则
        // excludePathPatterns 排除拦截
        registry.addInterceptor(new MyInterceptor()).addPathPatterns("/**").excludePathPatterns("/login");
        super.addInterceptors(registry);
    }
}

(3)、监听器

@WebListener
public class SessionListener implements HttpSessionListener{
 
    @Override
    public void sessionCreated(HttpSessionEvent arg0) {
        System.out.println("监听 创建session");
    }
 
    @Override
    public void sessionDestroyed(HttpSessionEvent arg0) {
        System.out.println("监听 销毁session");
    }
 
}

(4)、启动类

/**
 * @ServletComponentScan 扫描我们自定义的servlet
 * @author tyro
 *
 */
@ServletComponentScan
@SpringBootApplication
public class SpringbootFilterListenerInterceptorApplication {
 
    public static void main(String[] args) {
        SpringApplication.run(SpringbootFilterListenerInterceptorApplication.class, args);
    }
}

Github 代码示例地址:https://github.com/rstyro/spring-boot

相关文章

  • springboot监听器,过滤器,拦截器

    springboot监听器,过滤器,拦截器 servlet3.0注解 监听器 servletContextList...

  • Java 拦截器

    Javas三大器:过滤器-监听器-拦截器 Tables过滤器(Filter)监听器(Listener)拦截器(In...

  • springboot中使用拦截器、监听器、过滤器

      拦截器、过滤器、监听器在web项目中很常见,这里对springboot中怎么去使用做一个总结. 1. 拦截器(...

  • Web

    过滤器、监听器、拦截器的区别

  • 关于@webFilter使用@Order无效问题

    前言 在SpringBoot系列文章的《第七章:过滤器、监听器、拦截器》中,小技巧中指出,可使用@Order设置过...

  • Spring MVC 拦截器

    1. 监听器、过滤器和拦截器对比 Servlet:处理Request请求和Response响应; 过滤器(Filt...

  • java web三大器和三大域

    三大器:过滤器、监听器、拦截器 过滤器 过滤器属于servlet规范。责任链模式设计。在请求进入servlet前调...

  • 过滤器 - 拦截器 - 监听器

    过滤器 拦截器 监听器 过滤器 实现 实现Filter类,然后重写它的3个方法: init 方法 : 在容器中创建...

  • Java Web 三大利器

    Java Web 三大利器主要有: 1.过滤器。 2.拦截器。 3.监听器。 一、过滤器 1.什么是过滤器? 过滤...

  • Java Web之三大利器

    Java Web 三大利器主要有: 1.过滤器。2.拦截器。3.监听器。一、过滤器1.什么是过滤器?过滤器是Jav...

网友评论

    本文标题:SpringBoot 的过滤器、监听器、拦截器

    本文链接:https://www.haomeiwen.com/subject/yzugcctx.html