过滤器Filter与拦截器Interception区别?
-
包的位置不同。
filter位于tomcat里面,interception位于Spring-webmvc
filter位置:
interceptor位置:
-
实现方式不同。在自定义的时候,filter我们可以实现Filter接口,重写doFilter方法,入参为ServletRequest,ServletResponse,FilterChain,没有返回值;
filter类:
interception我们可以实现HandlerInterceptor接口,
重写preHandler方法(请求进入controller方法之前),入参为HttpServletRequest,HttpServletResponse,Object(handler),返回Boolean值,默认返回true;
postHandler(请求结束,结果从controller以及返回),入参为HttpServletRequest,HttpServletResponse,Object(handler),ModelAndView,无返回参数;
afterCompletion(进入controller前后),入参为HttpServletRequest,HttpServletResponse,Object(handler),Exception,无返回参数。
interceptor类:
-
启动加载和拦截的顺序不同。springboot在启动加载配置时。先加载Interceptor再加载Filter,在拦截的时候,先进入Filter,在进入Interceptor.
请求进来图解:
项目请求打印结果:
-
加载到springboot容器的方式不同。自定义Filter可以通过在类的上面加上@Configuration或者@Compent等方式自动注入到spring容器容器中;
filter实现:
自定义的Interceptor可以通过@Compent自动注入,但是切记需要自定义的Conifg类中实现WebMvcConfiguer,重写addInterptors()方法,将自定义的Interceptor添加进去
interceptor实现:
interceptor注入:
项目源码在:
https://github.com/likangkang16/filter-interceptor.git