springboot拦截器之Filter和拦截器Interceptor之间的区别(六)
2021-03-31 18:28
标签:依赖 boot lte 思想 tor 区别 多次 servlet Servle 1Filter 是基于函数回调doFilter(),而Interceptor是基于AOP思想 2Filter只在Servlet前后起作用,而Interceptor能够深入到方法前后、异常跑出前后等 3Filter依赖于Servlet容器即web应用中,而Interceptor不依赖于Servlet容器,所以可以运行在多种环境 4在调用方法的生命周期里,Interceptor可以被多次调用,而Filter只能在容器初始化的时候调用一次 Filter和Interceptor的执行顺序 过滤前-->拦截前-->action执行-->拦截后-->过滤后 springboot拦截器之Filter和拦截器Interceptor之间的区别(六) 标签:依赖 boot lte 思想 tor 区别 多次 servlet Servle 原文地址:https://www.cnblogs.com/zhushilai/p/13564481.html
文章标题:springboot拦截器之Filter和拦截器Interceptor之间的区别(六)
文章链接:http://soscw.com/index.php/essay/70580.html