filter:filter方法能够拿到执行的request和response,获取不到具体执行的controller
interception:interception能够拿到具体是哪个方法执行的和requset、response。但是拿不到具体方法中的参数。
Aop:能够拿到具体方法的参数,获取不到requset、response
他们之间执行的顺序:filter-> interception->@Around aop->具体执行的方法->产生异常->@Around aop->@ControllerAdvice 全局异常处理-> interception-> filter
作者:shuaidong
链接:https://www.jianshu.com/p/cd9875bd7161
作者讲的很透彻。