摘要: 注解@Pointcut 是指哪些方法 需要被执行 AOP,是由“PointCut Expression” Pointcut 可以有下列方式来定义或者 通过 && || 和 ! 方式进行组合 @args() @execution() @target() @within() @annotation() 阅读全文
posted @ 2016-09-20 17:40 panie2015 阅读(1842) 评论(0) 推荐(0) 编辑
摘要: 1、 Spring 除了支持Schema 方式配置 AOP,还支持注解方式:使用 @Aspect 来配置 2、 Spring 默认不支持 @Aspect 风格的切面声明,通过如下配置开启@Aspect 支持 3、 通过以上配置,Spring就能发现用@Aspect 注解的切面内并把它应用到目标对象上 阅读全文
posted @ 2016-09-20 10:15 panie2015 阅读(202) 评论(0) 推荐(0) 编辑