springboot对拦截器的支持

Posted whhhd

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot对拦截器的支持相关的知识,希望对你有一定的参考价值。

拦截器:Interceptor 在AOP(Aspect-Oriented Programming)中用于在某个方法或字段被访问之前,进行拦截然后在之前或之后加入某些操作。比如日志,安全等。一般拦截器方法都是通过动态代理的方式实现。可以通过它来进行权限验证,或者判断用户是否登陆,或者是像12306 判断当前时间是否是购票时间。

package com.example.spingbootdemo1.listener;

import org.springframework.web.servlet.HandlerInterceptor;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

public class LoginInterceptor implements HandlerInterceptor {
    @Override
    public boolean preHandle(HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse, Object o) throws Exception {
        System.out.println("preHandle被调用");
        if(httpServletRequest.getSession().getAttribute("username")!=null&&"xiadewang".equals(httpServletRequest.getSession().getAttribute("username").toString())){
            return true;
        }else{
            httpServletResponse.sendRedirect("/login.html");
            return false;
        }
    }
}

让它进行配置进容器中,要求所在类实现WebMvcConfigurer接口,在实现里面的

 @Override
    public void addInterceptors(InterceptorRegistry registry) {
        registry.addInterceptor(new LoginInterceptor()).addPathPatterns("/**").excludePathPatterns("/login.html","/login");    
    }

和过滤器的区别:

最简单明了的区别就是过滤器可以修改request,而拦截器不能。过滤器就是筛选出你要的东西,比如requeset中你要的那部分拦截器在做安全方面用的比较多,比如终止一些流程。

以上是关于springboot对拦截器的支持的主要内容,如果未能解决你的问题,请参考以下文章

Spring Boot干货系列:静态资源和拦截器处理

SpringBoot2----拦截器和文件上传功能

SpringBoot支持interceptor(拦截器)

springboot+mybatis拦截器不生效问题分析

SpringBoot拦截器和 Servlet3.0自定义FilterListener

SpringBoot+CXF 实现简单的webservice,并支持Basic验证