首页 > 代码库 > Spring Aspect 用法略讲

Spring Aspect 用法略讲

『配置Aspect』若要启用AspectJ风格的注解则必须额外的导入AspectJ的jar包,此外还需要在spring的配置文件中进行配置,配置方式有两种;一.在配置文件的Schema中进行配置第一步:在schema中添加xmlns:aop="http://www.springframework.org/schema.aop"第二步:在schema中的xsi:schemaLocation中添加两行:http://www.springframework.org/schema/aop以及http://www.springframework.org/schema/aop/spring-aop.xls第三步:在beans标签体中添加<aop:aspectj-autoproxy/>二.在beans标签体中添加一个bean第一步:添加<bean class="org.springframework.aop.aspectj.annotation.AnnotationAwareAspectJAutoProxyCreator">第二步:在beans标签体中添加<aop:aspectj-autoproxy/>『Aspect使用讲解』有两种方式,第一种是使用AspectJ风格的注解,第二种是使用XML配置文件零.预备execution(modifier returnType classType methodName params throwsType)——切入点指示符用法讲解六个参数均支持通配符"*",但methodName还额外支持"(..)"通配符用来匹配一个或者多个参数,六个参数中returnType,methodName,params这三者不能省略,其余均可省略用法示例execution(* * (..))——匹配任意返回类型,任意方法名,任意参数的方法,也就是一切方法都可以execution(public * *Controller get* (*,String))——匹配任意类访问修饰符为public的,任意返回值类型的,属于以Controller结尾的类的,方法名以get开头的,参数一个任意类型一个String类型的方法execution(* org.xt.controller.*Controller.* (..))——此用法不言而喻一.使用AspectJ风格的注解,这类注解spring支持的有:@Aspect——此注解用来将一个类定义成一个切面用法示例@AspectclassModifier class className{}@Before——此注解是用来标注增强方法,其作用是将增强方法切入连接点中,使其在连接点方法执行之前执行用法示例@AspectclassModifier class className{    @Before("execution(* org.xt.controller.*.* (..))")    methodModifier methodReturnType methodName(){}}@AfterReturning——此注解是用来标注增强方法,其作用是将增强方法切入连接点中,使其在切入点点方法执行完成成功返回之后执行,它有两个属性分别为pointcut和returning用法讲解returning用来指定切入点的返回值对象用法示例@AspectclassModifier class className{    @AfterReturning(returning="desReturnValue",pointcut="execution(* org.xt.controller.*.* (..))")    methodModifier methodReturnType methodName(Object desReturnValue){        //打印返回值对象        System.out.println(String.valueOf(desReturnValue));    }}@AfterThrowing——此注解是用来标注增强方法,其作用是将增强方法切入连接点中,用来处理切入点方法未处理的异常,它有两个属性分别为pointcut和throwing用法讲解throwing用来指定切入点抛出的异常对象用法示例@AspectclassModifier class className{    @AfterThrowing(throwing="desThrowValue",pointcut="execution(* org.xt.controller.*.* (..))")    methodModifier methodReturnType methodName(Throwable desThrowValue){        //打印异常消息        System.error.println(desThrowValue.getMessage());    }}@After——此注解是用来标注增强方法,其作用是将增强方法切入连接点中,使其在切入点点方法执行之后执行,此标注并不要求切入点方法一定要成功执行完成用法示例@AspectclassModifier class className{    @After("execution(* org.xt.controller.*.* (..))")    methodModifier methodReturnType methodName(){}}@Around——此注解的功能最是强大,因为其标注的增强方法可以直接干预切入点方法的执行用法讲解被此标注的增强方法必须有一个参数,参数类型为ProceedingJoinPoint用法示例@AspectclassModifier class className{    @Around("execution(* org.xt.controller.*.* (..))")    methodModifier methodReturnType methodName(ProceedingJoinPoint point){}}补充:以上共有5种增强方法的标注,在增强方法中若要访问切入点的一些数据,比如切入点方法的参数,切入点方法所属的类对象,切入点方法的代理类对象以及切入点方法本身的一些数据则需要用到JoinPoint类用法讲解第一步:为增强方法定义一个JoinPoint类型的参数(@Around增强的方法就不必了,因为其本身就有一个ProceedingJoinPoint)第二步:此时可以使用JoinPoint类型的参数对象来分别调用Object[] getArgs()来获取切入点方法的参数,Object getTarget()来获取切入点方法的类对象,Object getThis()来获取切入点方法的代理类对象,Signature getSignature()来获取切入点方法的本身信息用法示例@AspectclassModifier class className{    @Before("execution(protected * org.xt.controller.*.*(..))")    methodModifier methodReturnType methodName(JoinPoint point){        Object[] args=point.getArgs();        for(Object arg:args){            System.out.println(String.valueOf(arg));        }    }    @AfterReturning(returning="",pointcut="execution(protected * org.xt.controller.*Controller.*(..))")    methodModifier methodReturnType methodName(JoinPoint point){        Object target=point.getTarget();        //打印切入点方法的对象        System.out.println("切入点方法的类对象为"+target.toString());    }    @AfterThrowing(throwing="",pointcut="execution(* org.xt.controller.*.* (*,String,Object))")    methodModifier methodReturnType methodName(JoinPoint point){        Object[] args=point.getArgs();        for(Object arg:args){            System.out.println(String.valueOf(arg));        }    }    @After("execution(* org.xt.controller.*.* (..))")    methodModifier methodReturnType methodName(JoinPoint point)){        //打印切入点方法的方法名        System.out.println("切入点方法的方法名为"+point.getSignature().getName());    }    @Around("execution(* org.xt.controller.*.* (..))")    methodModifier methodReturnType methodName(ProceedingJoinPoint point){        Object proxy=point.getThis();        System.out.println("切入点方法的代理对象为"+proxy.toString());        //执行切入点函数,可以改变切入点函数的参数        Object returnValue=http://www.mamicode.com/point.proceed(new String[]{});    }}

 

Spring Aspect 用法略讲