编号 |
013 |
错误、问题类型 |
Spring AOP |
描述 |
使用@Aspect实现AOP:
Public class TestAspect{ @Around(“execution(* com.xx.aclass.method(..))”)
Public void aspectMethod() throws Throwable { // do something } } 一直不能执行切面逻辑 |
解决方案 |
经查发现,定义的切入点是一个static方法,static方法上不能进行切入。 在使用@Aspect实现切面时,请注意以下几点: 1、(最好)在DispatcherServlet的配置文件中开启<aop:aspect-autoproxy proxy-target-class=”true”/> 驱动(其他配置文件中配置也可以); 2、在使用aspectj作为代理时,切面的目标类可以是一个非(实现)接口类,若使用jdk默认的代理,需要定义接口; 3、目标类需要由Spring托管,即不能是直接new()出来的; 4、请确保切入的目标方法是public的; 5、static、final修饰的方法都不能切入,因为无法继承,故而无法动态代理,也就不能切入了。 6、若要切入的某个方法是继承自Abstract父类,且没有复写,请把父类的路径也加入。如:@Around(“execution(* com.xx.aclass.method(..)) || execution(* com.xx.absclass.method2(..))”) |
是否解决 |
是 |
转载于:https://my.oschina.net/u/561986/blog/919768