标签:创建 ref 支持 允许 ice 测试结果 存在 main 需要
这里使用电力公司下的去各家各户查电表的工人为例。
切面一共有五种通知
- Before 某方法调用之前发出通知。
- After 某方法完成之后发出通知,不考虑方法运行的结果。
- After-returning 将通知放置在被通知的方法成功执行之后。
- After-throwing 将通知放置在被通知的方法抛出异常之后。
- Around 通知包裹在被通知的方法的周围,在方法调用之前和之后发出通知。
很明显一位查电表的人不能把所有的用电客户都拜访个遍,而是每一个人都会有自己管辖的客户。同样,一个切面没必要通知(advise)应用程序中所有的连接点(join point)。切点(pointcuts)能够精确定位被切面通知的连接点。
如果通知(advice)定义了切面what和when,那切点就定义的切面的 where。切点决定去匹配通知们应该去编织的一个或者多个连接点。通常需要使用类或者方法的名字来指定切点,或者通过正则表达式去匹配类和方法的名字
AspectJ标志符 | 解释 |
---|---|
args() | 定制join-point去匹配那些参数为指定类型的方法的执行动作。 |
@args() | 定制join-point去匹配那些参数被指定类型注解的方法的执行动作 |
execution() | 开始匹配在其内部编写的定制 |
this() | 定制join-pont去匹配由AOP代理的Bean引用的指定类型的类。 |
target() | 定制join-point去匹配特定的对象,这些对象一定是指定类型的类。 |
@target() | 定制join-point去匹配特定的对象,这些对象要具有的指定类型的注解。 |
within() | 定制join-point在必须哪一个包中。 |
@within() | 定制join-point在必须由指定注解标注的类中。 |
@annotation | 定制连接点具有指定的注解。 |
开始写代码之前需要做一些准备。
如果你使用的是Maven工具构建的项目,除了基本的Spring依赖,还需要导入下面两个支持Spring切面的依赖。
<!-- https://mvnrepository.com/artifact/org.aspectj/aspectjweaver -->
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjweaver</artifactId>
<version>1.8.9</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.aspectj/aspectjrt -->
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjrt</artifactId>
<version>1.8.9</version>
</dependency>
Gradle 相似。注意这里的groupId要为org.aspectj,而不是aspectj,否则运行时会抛出异常。
public interface Performance {
public void perform();
}
Performance代表一个表演者,比如舞台上的表演者,电影里的演员等等。\
现在你想写一个当Performance的perform()方法执行时触发的切面。下面这个表达式就展示了一个切点表达式,只要perform()方法执行了,他就能得到切面的通知。
execution(* concert.Performance.perform(..))
这里解释一下:
如果你想限定切点的范围,只匹配在concert包被调用的perform()。你可以使用within()标识符:
execution(* concert.Performance.perform(..))
&& within(concert.*))
注意这里的 && 就是与的意思,当然还有 或 || ,非 ! ,如果你是在XML配置文件中编写切面,那就建议使用 and or not 来替代他们。
在表达式中,可以使用bean()标识符,通过bean的ID来识别一个bean。例如:
execution(* concert.Performance.perform())
and bean(‘woodstock‘)
AspectJ 5 之后你就能使用注解的方式来创建切面,他能够让你使用很少的注解就能实现切面。
现在你已经定义了一个Performance作为你切面要切入的主体。现在我们就使用AspectJ 注解来创建切面。
没有观众的表演家就不能叫表演家,观众对于表演家非常重要,但又不属于表演家,他是一个分离出来的点,因此,我们就能将观众定义成一个切面,好让他能够轻松的观看一个表演家的表演。
package com.mengxiang.concert;
import org.aspectj.lang.annotation.*;
/**
* 观众
* Created by Henvealf on 2016/8/26.
*/
@Aspect
public class Audience {
@Before("execution(* com.mengxiang.concert.Performance.perform(..))")
public void slienceCellPhones(){
System.out.println("关掉手机");
}
@Before("execution(* com.mengxiang.concert.Performance.perform(..))")
public void takeSeats() {
System.out.println("找到座位");
}
@AfterReturning("execution(* com.mengxiang.concert.Performance.perform(..))")
public void applause() {
System.out.println("好好好!!鼓掌");
}
@AfterThrowing("execution(* com.mengxiang.concert.Performance.perform())")
public void demandRefund() {
System.out.println("退票! 退票! ");
}
}
然后编写一个配置文件,注入观众Bean和演员Bean。
@Configuration
@EnableAspectJAutoProxy
@ComponentScan
public class ConcertConfig {
@Bean
public Audience audience() {
return new Audience();
}
@Bean(name = "dancer")
public Performance dancer(){
return new Dancer();
}
}
最后测试
import org.springframework.context.ApplicationContext;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
/**
* Created by Henvealf on 2016/8/27.
*/
public class Main {
public static void main(String[] args) {
ApplicationContext context = new AnnotationConfigApplicationContext("com.mengxiang.concert");
Performance per = (Performance) context.getBean("dancer");
per.perform();
}
}
测试结果完全可以预料到:
关掉手机
找到座位
表演开始,跳舞,跳舞。
好好好!!鼓掌哈哈,感谢大家的阅读。
标签:创建 ref 支持 允许 ice 测试结果 存在 main 需要
原文地址:http://www.cnblogs.com/haoxiu1004/p/7305146.html