AOP是目前Spring框架中的核心之一,在应用中具有非常重要的作用,也是Spring其他组件的基础。它是一种面向切面编程的思想。关于AOP的基础知识,相信多数童鞋都已经了如指掌,我们就略过这部分,来讲解下AOP的核心功能的底层实现机制:如何用动态代理来实现切面拦截。
- package jdkproxy;
- /**
- * 该类是所有被代理类的接口类,jdk实现的代理要求被代理类基于统一的接口
- *
- * @author typ
- *
- */
- public interface Service {
- /**
- * add方法
- */
- public void add();
- /**
- * update方法
- */
- public void update();
- }
- package jdkproxy;
- /**
- * 被代理类,即目标类target
- *
- * @author typ
- *
- */
- public class AService implements Service {
- /*
- * (non-Javadoc)
- *
- * @see jdkproxy.Service#add()
- */
- public void add() {
- System.out.println("AService add>>>>>>>>>>>>>>>>>>");
- }
- /*
- * (non-Javadoc)
- *
- * @see jdkproxy.Service#update()
- */
- public void update() {
- System.out.println("AService update>>>>>>>>>>>>>>>");
- }
- }
- package jdkproxy;
- import java.lang.reflect.InvocationHandler;
- import java.lang.reflect.Method;
- /**
- * @author typ
- *
- */
- public class MyInvocationHandler implements InvocationHandler {
- private Object target;
- MyInvocationHandler() {
- super();
- }
- MyInvocationHandler(Object target) {
- super();
- this.target = target;
- }
- public Object invoke(Object proxy, Method method, Object[] args)
- throws Throwable {
- // 程序执行前加入逻辑,MethodBeforeAdviceInterceptor
- System.out.println("before-----------------------------");
- // 程序执行
- Object result = method.invoke(target, args);
- // 程序执行后加入逻辑,MethodAfterAdviceInterceptor
- System.out.println("after------------------------------");
- return result;
- }
- }
- package jdkproxy;
- import java.lang.reflect.Proxy;
- /**
- * @author typ
- *
- */
- public class Test {
- public static void main(String[] args) {
- Service aService = new AService();
- MyInvocationHandler handler = new MyInvocationHandler(aService);
- // Proxy为InvocationHandler实现类动态创建一个符合某一接口的代理实例
- Service aServiceProxy = (Service) Proxy.newProxyInstance(aService
- .getClass().getClassLoader(), aService.getClass()
- .getInterfaces(), handler);
- // 由动态生成的代理对象来aServiceProxy 代理执行程序,其中aServiceProxy 符合Service接口
- aServiceProxy.add();
- System.out.println();
- aServiceProxy.update();
- // 以下是对B的代理
- // Service bService = new BService();
- // MyInvocationHandler handler = new MyInvocationHandler(bService);
- // Service bServiceProxy = (Service) Proxy.newProxyInstance(bService
- // .getClass().getClassLoader(), bService.getClass()
- // .getInterfaces(), handler);
- // bServiceProxy.add();
- // System.out.println();
- // bServiceProxy.update();
- }
- }
可以看到,在目标类AService的add和update方法前后已经加入了自定义的切面逻辑,AOP拦截机制生效了。
- package cglibproxy;
- /**
- * 被代理类,即目标对象target
- *
- * @author typ
- *
- */
- public class Base {
- /**
- * 一个模拟的add方法
- */
- public void add() {
- System.out.println("add ------------");
- }
- }
- package cglibproxy;
- import java.lang.reflect.Method;
- import net.sf.cglib.proxy.MethodInterceptor;
- import net.sf.cglib.proxy.MethodProxy;
- /**
- * 此为代理类,用于在pointcut处添加advise
- *
- * @author typ
- *
- */
- public class CglibProxy implements MethodInterceptor {
- public Object intercept(Object object, Method method, Object[] args,
- MethodProxy proxy) throws Throwable {
- // 添加切面逻辑(advise),此处是在目标类代码执行之前,即为MethodBeforeAdviceInterceptor。
- System.out.println("before-------------");
- // 执行目标类add方法
- proxy.invokeSuper(object, args);
- // 添加切面逻辑(advise),此处是在目标类代码执行之后,即为MethodAfterAdviceInterceptor。
- System.out.println("after--------------");
- return null;
- }
- }
- package cglibproxy;
- import net.sf.cglib.proxy.Enhancer;
- /**
- * 工厂类,生成增强过的目标类(已加入切入逻辑)
- *
- * @author typ
- *
- */
- public class Factory {
- /**
- * 获得增强之后的目标类,即添加了切入逻辑advice之后的目标类
- *
- * @param proxy
- * @return
- */
- public static Base getInstance(CglibProxy proxy) {
- Enhancer enhancer = new Enhancer();
- enhancer.setSuperclass(Base.class);
- //回调方法的参数为代理类对象CglibProxy,最后增强目标类调用的是代理类对象CglibProxy中的intercept方法
- enhancer.setCallback(proxy);
- // 此刻,base不是单纯的目标类,而是增强过的目标类
- Base base = (Base) enhancer.create();
- return base;
- }
- }
- package cglibproxy;
- /**
- * @author typ
- *
- */
- public class Test {
- public static void main(String[] args) {
- CglibProxy proxy = new CglibProxy();
- // base为生成的增强过的目标类
- Base base = Factory.getInstance(proxy);
- base.add();
- }
- }