2 aop 面向切面编程
2.1 aop入门
在前面的章节主要讲guice的依赖注入,有了依赖注入的基础后我们再来看guice的aop。我们先从一个例子入手,深入浅出的去理解guice的aop的原理和实现。
首先我们定义服务service,这个服务有一个简单的方法sayhello,当然了我们有一个服务的默认实现serviceimpl,然后使用@implementedby将服务和默认实现关联起来,同时将服务的实现标注为单例模式。
1 @implementedby(serviceimpl.class)
2 public interface service {
3 void sayhello();
4 }
在服务的实现serviceimpl中,我们sayhello方法就是输出一行信息,这行信息包含服务的类名,hashcode以及方法名称和执行的时间。
1 @singleton
2 public class serviceimpl implements service {
3
4 @override
5 @named("log")
6 public void sayhello() {
7 system.out.println(string.format("[%s#%d] execute %s at %d", this.getclass().getsimplename(),hashcode(),"sayhello",system.nanotime()));
8 }
9
10 }
11
接下来定义一个aop的实现。在aopalliance中(大家都认可的aop联盟)实现我们的方法拦截器。这个拦截器loggermethodinterceptor
也没有做什么特别的事情,只是记录些执行的时间,当然了由于执行时间比较短我们用纳秒来描述(尽管不是那么精确)。
在methodinvocation中我们一定要调用proceed()方法,这样凯发k8网页登录的服务才能被执行。当然了如果为了做某些控制我们就能决定是否调用服务代码了。
1 import static java.lang.system.out;
2
3 import org.aopalliance.intercept.methodinterceptor;
4 import org.aopalliance.intercept.methodinvocation;
5
6 public class loggermethodinterceptor implements methodinterceptor {
7
8 @override
9 public object invoke(methodinvocation invocation) throws throwable {
10 string methodname = invocation.getmethod().getname();
11 long starttime=system.nanotime();
12 out.println(string.format("before method[%s] at %s", methodname, starttime));
13 object ret = null;
14 try {
15 ret = invocation.proceed();
16 } finally {
17 long endtime=system.nanotime();
18 out.println(string.format(" after method[%s] at %s, cost(ns):%d", methodname, endtime,(endtime-starttime)));
19 }
20 return ret;
21 }
22 }
23
最后才是我们的客户端程序,注意在这里我们需要绑定一个拦截器,这个拦截器匹配任何类的带有log注解的方法。所以这就是为什么我们服务的实现方法需要用log标注的原因了。
1 public class aopdemo {
2 @inject
3 private service service;
4
5 public static void main(string[] args) {
6 injector inj = guice.createinjector(new module() {
7 @override
8 public void configure(binder binder) {
9 binder.bindinterceptor(matchers.any(),//
10 matchers.annotatedwith(names.named("log")),//
11 new loggermethodinterceptor());
12 }
13 });
14 inj.getinstance(aopdemo.class).service.sayhello();
15 inj.getinstance(aopdemo.class).service.sayhello();
16 inj.getinstance(aopdemo.class).service.sayhello();
17 }
18 }
19
我们的程序输出了我们期望的结果。
before method[sayhello] at 7811306067456
[serviceimpl$$enhancerbyguice$$96717882#33353934] execute sayhello at 7811321912287
after method[sayhello] at 7811322140825, cost(ns):16073369
before method[sayhello] at 7811322315064
[serviceimpl$$enhancerbyguice$$96717882#33353934] execute sayhello at 7811322425280
after method[sayhello] at 7811322561835, cost(ns):246771
before method[sayhello] at 7811322710141
[serviceimpl$$enhancerbyguice$$96717882#33353934] execute sayhello at 7811322817521
after method[sayhello] at 7811322952455, cost(ns):242314
关于此结果有几点说明。
(1)由于使用了aop凯发k8网页登录的服务得到的不再是我们写的服务实现类了,而是一个继承的子类,这个子类应该是在内存中完成的。
(2)除了第一次调用比较耗时外(可能guice内部做了比较多的处理),其它调用事件为0毫秒(凯发k8网页登录的服务本身也没做什么事)。
(3)确实完成了我们期待的aop功能。
我们的例子暂且说到这里,来看看aop的相关概念。
2.2 aop相关概念
老实说aop有一套完整的体系,光是概念就有一大堆,而且都不容易理解。这里我们结合例子和一些场景来大致了解下这些概念。
通知(advice)
所谓通知就是我们切面需要完成的功能。比如2.1例子中通知就是记录方式执行的耗时,这个功能我们就称之为一个通知。
比如说在很多系统中我们都会将操作者的操作过程记录下来,但是这个记录过程又不想对服务侵入太多,这样就可以使用aop来完成,而我们记录日志的这个功能就是一个通知。通知除了描述切面要完成的工作外还需要描述何时执行这个工作,比如是在方法的之前、之后、之前和之后还是只在有异常抛出时。
连接点(joinpoint)
连接点描述的是我们的通知在程序执行中的时机,这个时机可以用一个“点”来描述,也就是瞬态。通常我们这个瞬态有以下几种:方法运行前,方法运行后,抛出异常时或者读取修改一个属性等等。总是我们的通知(功能)就是插入这些点来完成我们额外的功能或者控制我们的执行流程。比如说2.1中的例子,我们的通知(时间消耗)不仅在方法执行前记录执行时间,在方法的执行后也输出了时间的消耗,那么我们的连接点就有两个,一个是在方法运行前,还有一个是在方法运行后。
切入点(pointcut)
切入点描述的是通知的执行范围。如果通知描述的是“什么时候”做“什么事”,连接点描述有哪些“时候”,那么切入点可以理解为“什么地方”。比如在2.1例子中我们切入点是所有guice容器管理的服务的带有@named(“log”)注解的方法。这样我们的通知就限制在这些地方,这些地方就是所谓的切入点。
切面(aspect)
切面就是通知和切入点的结合。就是说切面包括通知和切入点两部分,由此可见我们所说的切面就是通知和切入点。通俗的讲就是在什么时候在什么地方做什么事。
引入(introduction)
引入是指允许我们向现有的类添加新的方法和属性。个人觉得这个特性尽管很强大,但是大部分情况下没有多大作用,因为如果一个类需要切面来增加新的方法或者属性的话那么我们可以有很多更优美的方式绕过此问题,而是在绕不过的时候可能就不是很在乎这个功能了。
目标(target)
目标是被通知的对象,比如我们2.1例子中的serviceimpl 对象。
代理(proxy)
代理是目标对象被通知引用后创建出来新的对象。比如在2.1例子中我们拿到的service对象都不是serviceimpl本身,而是其包装的子类serviceimpl$$enhancerbyguice$$96717882。
织入(weaving)
所谓织入就是把切面应用到目标对象来创建新的代理对象的过程。通常情况下我们有几种实际来完成织入过程:
编译时:就是在java源文件编程成class时完成织入过程。aspectj就存在一个编译器,运行在编译时将切面的字节码编译到目标字节码中。
类加载时:切面在目标类加载到jvm虚拟机中时织入。由于是在类装载过程发生的,因此就需要一个特殊的类装载器(classloader),aspectj就支持这种特性。
运行时:切面在目标类的某个运行时刻被织入。一般情况下aop的容器会建立一个新的代理对象来完成目标对象的功能。事实上在2.1例子中guice就是使用的此方式。
guice支持aop的条件是:
- 类必须是public或者package (default)
- 类不能是final类型的
- 方法必须是public,package或者protected
- 方法不能使final类型的
- 实例必须通过guice的@inject注入或者有一个无参数的构造函数
2.3 切面注入依赖
如果一个切面(拦截器)也需要注入一些依赖怎么办?没关系,guice允许在关联切面之前将切面的依赖都注入。比如看下面的例子。
我们有一个前置服务,就是将所有调用的方法名称输出。
1 @implementedby(beforeserviceimpl.class)
2 public interface beforeservice {
3
4 void before(methodinvocation invocation);
5 }
6
1 public class beforeserviceimpl implements beforeservice {
2
3 @override
4 public void before(methodinvocation invocation) {
5 system.out.println("before method "invocation.getmethod().getname());
6 }
7 }
8
然后有一个切面,这个切面依赖前置服务,然后输出一条方法调用结束语句。
1 public class aftermethodinterceptor implements methodinterceptor {
2 @inject
3 private beforeservice beforeservice;
4 @override
5 public object invoke(methodinvocation invocation) throws throwable {
6 beforeservice.before(invocation);
7 object ret = null;
8 try {
9 ret = invocation.proceed();
10 } finally {
11 system.out.println("after "invocation.getmethod().getname());
12 }
13 return ret;
14 }
15 }
在aopdemo2中演示了如何注入切面的依赖。在第9行,aftermethodinterceptor 请求guice注入其依赖。
1 public class aopdemo2 {
2 @inject
3 private service service;
4 public static void main(string[] args) {
5 injector inj = guice.createinjector(new module() {
6 @override
7 public void configure(binder binder) {
8 aftermethodinterceptor after= new aftermethodinterceptor();
9 binder.requestinjection(after);
10 binder.bindinterceptor(matchers.any(),//
11 matchers.annotatedwith(names.named("log")),//
12 after);
13 }
14 });
15 aopdemo2 demo=inj.getinstance(aopdemo2.class);
16 demo.service.sayhello();
17 }
18 }
尽管切面允许注入其依赖,但是这里需要注意的是,如果切面依赖仍然走切面的话那么程序就陷入了死循环,很久就会堆溢出。
2.4 matcher
binder绑定一个切面的api是
com.google.inject.binder.bindinterceptor(matcher>, matcher, methodinterceptor...)
第一个参数是匹配类,第二个参数是匹配方法,第三个数组参数是方法拦截器。也就是说目前为止guice只能拦截到方法,然后才做一些切面工作。
对于matcher有如下api:
- com.google.inject.matcher.matcher.matches(t)
- com.google.inject.matcher.matcher.and(matcher)
- com.google.inject.matcher.matcher.or(matcher)
其中第2、3个方法我没有发现有什么用,好像guice不适用它们,目前没有整明白。
对于第一个方法,如果是匹配class那么这里t就是一个class的类型,如果是匹配method就是一个method对象。不好理解吧。看一个例子。
1 public class serviceclassmatcher implements matcher<class>{
2 @override
3 public matcher<class> and(matcher super class> other) {
4 return null;
5 }
6 @override
7 public boolean matches(class t) {
8 return t==serviceimpl.class;
9 }
10 @override
11 public matcher<class> or(matcher super class> other) {
12 return null;
13 }
14 }
在前面的例子中我们是使用的matchers.any()对象匹配所有类而通过标注来识别方法,这里可以只匹配serviceimpl类来控制服务运行流程。
事实上guice里面有一个matcher的抽象类com.google.inject.matcher.abstractmatcher,我们只需要覆盖其中的matches方法即可。
大多数情况下我们只需要使用matchers提供的默认类即可。matchers中有如下api:
- com.google.inject.matcher.matchers.any():任意类或者方法
- com.google.inject.matcher.matchers.not(matcher):不满足此条件的类或者方法
- com.google.inject.matcher.matchers.annotatedwith(class):带有此注解的类或者方法
- com.google.inject.matcher.matchers.annotatedwith(annotation):带有此注解的类或者方法
- com.google.inject.matcher.matchers.subclassesof(class):匹配此类的子类型(包括本身类型)
- com.google.inject.matcher.matchers.only(object):与指定类型相等的类或者方法(这里是指equals方法返回true)
- com.google.inject.matcher.matchers.identicalto(object):与指定类型相同的类或者方法(这里是指同一个对象)
- com.google.inject.matcher.matchers.inpackage(package):包相同的类
- com.google.inject.matcher.matchers.insubpackage(string):子包中的类(包括此包)
- com.google.inject.matcher.matchers.returns(matcher>):返回值为指定类型的方法
通常只需要使用上面的方法或者组合方法就能满足我们的需求。
通过上面的学习可以看出,guice的aop还是很弱的,目前仅仅支持方法级别上的,另外灵活性也不是很高。
上一篇:
下一篇:
©2009-2014 imxylz
|求贤若渴