目录

  一、基于XML配置的Spring AOP

  二、使用注解配置AOP

  三、AspectJ切点函数

  四、AspectJ通知注解

  五、零配置实现Spring IoC与AOP

  六、示例下载

  AOP(Aspect Oriented Programming)面向切面编程,通过预编译方式和运行期动态代理实现程序功能的横向多模块统一控制的一种技术。AOP是OOP的补充,是Spring框架中的一个重要内容。利用AOP可以对业务逻辑的各个部分进行隔离,从而使得业务逻辑各部分之间的耦合度降低,提高程序的可重用性,同时提高了开发的效率。AOP可以分为静态织入与动态织入,静态织入即在编译前将需织入内容写入目标模块中,这样成本非常高。动态织入则不需要改变目标模块。Spring框架实现了AOP,使用注解配置完成AOP比使用XML配置要更加方便与直观。上一篇随笔中已经详细讲了代理模式。

详解Spring实现AOP的多种方式

  一、基于XML配置的Spring AOP

  在讲注解实现AOP功能前先用前面学习过的使用xml配置Spring AOP功能,这样是为了对比以便更好的理解。

  1.1、新建一个Maven项目,添加引用,项目的pom.xml文件如下:

详解Spring实现AOP的多种方式

XML/HTML代码
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  
  2.   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">  
  3.   <modelVersion>4.0.0</modelVersion>  
  4.   
  5.   <groupId>com.zhangguo</groupId>  
  6.   <artifactId>Spring052</artifactId>  
  7.   <version>0.0.1-SNAPSHOT</version>  
  8.   <packaging>jar</packaging>  
  9.   
  10.   <name>Spring052</name>  
  11.   <url>http://maven.apache.org</url>  
  12.   
  13.   <properties>  
  14.         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>  
  15.         <spring.version>4.3.0.RELEASE</spring.version>  
  16.     </properties>  
  17.     <dependencies>  
  18.         <dependency>  
  19.             <groupId>junit</groupId>  
  20.             <artifactId>junit</artifactId>  
  21.             <scope>test</scope>  
  22.             <version>4.10</version>  
  23.         </dependency>  
  24.         <dependency>  
  25.             <groupId>org.springframework</groupId>  
  26.             <artifactId>spring-context</artifactId>  
  27.             <version>${spring.version}</version>  
  28.         </dependency>  
  29.         <dependency>  
  30.             <groupId>org.aspectj</groupId>  
  31.             <artifactId>aspectjweaver</artifactId>  
  32.             <version>1.8.9</version>  
  33.         </dependency>  
  34.         <dependency>  
  35.             <groupId>cglib</groupId>  
  36.             <artifactId>cglib</artifactId>  
  37.             <version>3.2.4</version>  
  38.         </dependency>  
  39.     </dependencies>  
  40. </project>  

  1.2、创建要被代理的Math类,代码如下:

Java代码
  1. package com.zhangguo.Spring052.aop01;  
  2.   
  3. /** 
  4.  * 被代理的目标类 
  5.  */  
  6. public class Math{  
  7.     //加  
  8.     public int add(int n1,int n2){  
  9.         int result=n1+n2;  
  10.         System.out.println(n1+"+"+n2+"="+result);  
  11.         return result;  
  12.     }  
  13.       
  14.     //减  
  15.     public int sub(int n1,int n2){  
  16.         int result=n1-n2;  
  17.         System.out.println(n1+"-"+n2+"="+result);  
  18.         return result;  
  19.     }  
  20.       
  21.     //乘  
  22.     public int mut(int n1,int n2){  
  23.         int result=n1*n2;  
  24.         System.out.println(n1+"X"+n2+"="+result);  
  25.         return result;  
  26.     }  
  27.       
  28.     //除  
  29.     public int div(int n1,int n2){  
  30.         int result=n1/n2;  
  31.         System.out.println(n1+"/"+n2+"="+result);  
  32.         return result;  
  33.     }  
  34. }  

  1.3、编辑AOP中需要使用到的通知类Advices.java代码如下:

Java代码
  1. package com.zhangguo.Spring052.aop01;  
  2.   
  3. import org.aspectj.lang.JoinPoint;  
  4.   
  5. /** 
  6.  * 通知类,横切逻辑 
  7.  * 
  8.  */  
  9. public class Advices {  
  10.       
  11.     public void before(JoinPoint jp){  
  12.         System.out.println("----------前置通知----------");  
  13.         System.out.println(jp.getSignature().getName());  
  14.     }  
  15.       
  16.     public void after(JoinPoint jp){  
  17.         System.out.println("----------最终通知----------");  
  18.     }  
  19. }  

  1.4、配置容器初始化时需要的XML文件,aop01.xml文件内容如下:

XML/HTML代码
  1. <?xml version="1.0" encoding="UTF-8"?>  
  2. <beans xmlns="http://www.springframework.org/schema/beans"  
  3.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"   
  4.     xmlns:p="http://www.springframework.org/schema/p"  
  5.     xmlns:aop="http://www.springframework.org/schema/aop"  
  6.     xsi:schemaLocation="http://www.springframework.org/schema/beans  
  7.         http://www.springframework.org/schema/beans/spring-beans.xsd  
  8.         http://www.springframework.org/schema/aop  
  9.         http://www.springframework.org/schema/aop/spring-aop-4.3.xsd">  
  10.          
  11.     <!-- 被代理对象 -->  
  12.     <bean id="math" class="com.zhangguo.Spring052.aop01.Math"></bean>  
  13.       
  14.     <!-- 通知 -->  
  15.     <bean id="advices" class="com.zhangguo.Spring052.aop01.Advices"></bean>  
  16.       
  17.     <!-- aop配置 -->  
  18.     <aop:config proxy-target-class="true">  
  19.         <!--切面 -->  
  20.         <aop:aspect ref="advices">  
  21.             <!-- 切点 -->  
  22.             <aop:pointcut expression="execution(* com.zhangguo.Spring052.aop01.Math.*(..))" id="pointcut1"/>  
  23.             <!--连接通知方法与切点 -->  
  24.             <aop:before method="before" pointcut-ref="pointcut1"/>  
  25.             <aop:after method="after" pointcut-ref="pointcut1"/>  
  26.         </aop:aspect>  
  27.     </aop:config>  
  28.   
  29. </beans>  

  1.5、测试代码Test.java如下:

Java代码
  1. package com.zhangguo.Spring052.aop01;  
  2.   
  3. import org.springframework.context.ApplicationContext;  
  4. import org.springframework.context.support.ClassPathXmlApplicationContext;  
  5.   
  6. public class Test {  
  7.   
  8.     public static void main(String[] args) {  
  9.         ApplicationContext ctx = new ClassPathXmlApplicationContext("aop01.xml");  
  10.         Math math = ctx.getBean("math", Math.class);  
  11.         int n1 = 100, n2 = 5;  
  12.         math.add(n1, n2);  
  13.         math.sub(n1, n2);  
  14.         math.mut(n1, n2);  
  15.         math.div(n1, n2);  
  16.     }  
  17.   
  18. }  

  运行结果:

详解Spring实现AOP的多种方式

  二、使用注解配置AOP

详解Spring实现AOP的多种方式

  2.1、在上一个示例中修改被代理的类Math,为了实现IOC扫描在Math类上注解了@Service并命名bean为math。相当于上一个示例中在xml配置文件中增加了一个bean,<!-- 被代理对象 --><bean id="math" class="com.zhangguo.Spring052.aop01.Math"></bean>,Math类的代码如下:

Java代码
  1. package com.zhangguo.Spring052.aop02;  
  2.   
  3. import org.springframework.stereotype.Service;  
  4.   
  5. /** 
  6.  * 被代理的目标类 
  7.  */  
  8. @Service("math")  
  9. public class Math{  
  10.     //加  
  11.     public int add(int n1,int n2){  
  12.         int result=n1+n2;  
  13.         System.out.println(n1+"+"+n2+"="+result);  
  14.         return result;  
  15.     }  
  16.       
  17.     //减  
  18.     public int sub(int n1,int n2){  
  19.         int result=n1-n2;  
  20.         System.out.println(n1+"-"+n2+"="+result);  
  21.         return result;  
  22.     }  
  23.       
  24.     //乘  
  25.     public int mut(int n1,int n2){  
  26.         int result=n1*n2;  
  27.         System.out.println(n1+"X"+n2+"="+result);  
  28.         return result;  
  29.     }  
  30.       
  31.     //除  
  32.     public int div(int n1,int n2){  
  33.         int result=n1/n2;  
  34.         System.out.println(n1+"/"+n2+"="+result);  
  35.         return result;  
  36.     }  
  37. }  

  2.2、修改通知类Advices,代码中有3个注解,@Component表示该类的实例会被Spring IOC容器管理;@Aspect表示声明一个切面;@Before表示before为前置通知,通过参数execution声明一个切点,Advices.java代码如下所示:

Java代码
  1. package com.zhangguo.Spring052.aop02;  
  2.   
  3. import org.aspectj.lang.JoinPoint;  
  4. import org.aspectj.lang.annotation.After;  
  5. import org.aspectj.lang.annotation.Aspect;  
  6. import org.aspectj.lang.annotation.Before;  
  7. import org.springframework.stereotype.Component;  
  8.   
  9. /** 
  10.  * 通知类,横切逻辑 
  11.  * 
  12.  */  
  13. @Component  
  14. @Aspect  
  15. public class Advices {  
  16.     @Before("execution(* com.zhangguo.Spring052.aop02.Math.*(..))")  
  17.     public void before(JoinPoint jp){  
  18.         System.out.println("----------前置通知----------");  
  19.         System.out.println(jp.getSignature().getName());  
  20.     }  
  21.       
  22.     @After("execution(* com.zhangguo.Spring052.aop02.Math.*(..))")  
  23.     public void after(JoinPoint jp){  
  24.         System.out.println("----------最终通知----------");  
  25.     }  
  26. }  

  上面的代码与下面的配置基本等同

XML/HTML代码
  1. <!-- 通知 -->  
  2. <bean id="advices" class="com.zhangguo.Spring052.aop01.Advices"></bean>  
  3.   
  4. <!-- aop配置 -->  
  5. <aop:config proxy-target-class="true">  
  6.     <!--切面 -->  
  7.     <aop:aspect ref="advices">  
  8.         <!-- 切点 -->  
  9.         <aop:pointcut expression="execution(* com.zhangguo.Spring052.aop01.Math.*(..))" id="pointcut1"/>  
  10.         <!--连接通知方法与切点 -->  
  11.         <aop:before method="before" pointcut-ref="pointcut1"/>  
  12.         <aop:after method="after" pointcut-ref="pointcut1"/>  
  13.     </aop:aspect>  
  14. </aop:config>

  2.3、新增配置文件aop02.xml,在配置IOC的基础上增加了aop:aspectj-autoproxy节点,Spring框架会自动为与AspectJ切面配置的Bean创建代理,proxy-target-class="true"属性表示被代理的目标对象是一个类,而非实现了接口的类,主要是为了选择不同的代理方式。

XML/HTML代码
  1. <?xml version="1.0" encoding="UTF-8"?>  
  2. <beans xmlns="http://www.springframework.org/schema/beans"  
  3.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"   
  4.     xmlns:p="http://www.springframework.org/schema/p"  
  5.     xmlns:aop="http://www.springframework.org/schema/aop"  
  6.     xmlns:context="http://www.springframework.org/schema/context"  
  7.     xsi:schemaLocation="http://www.springframework.org/schema/beans  
  8.         http://www.springframework.org/schema/beans/spring-beans.xsd  
  9.         http://www.springframework.org/schema/context  
  10.         http://www.springframework.org/schema/context/spring-context-4.3.xsd  
  11.         http://www.springframework.org/schema/aop  
  12.         http://www.springframework.org/schema/aop/spring-aop-4.3.xsd">  
  13.         <context:component-scan base-package="com.zhangguo.Spring052.aop02">  
  14.         </context:component-scan>  
  15.         <aop:aspectj-autoproxy proxy-target-class="true"></aop:aspectj-autoproxy>  
  16. </beans>  

  2.4、测试运行代码Test.java如下:

Java代码
  1. package com.zhangguo.Spring052.aop02;  
  2.   
  3. import org.springframework.context.ApplicationContext;  
  4. import org.springframework.context.support.ClassPathXmlApplicationContext;  
  5.   
  6. public class Test {  
  7.   
  8.     public static void main(String[] args) {  
  9.         ApplicationContext ctx = new ClassPathXmlApplicationContext("aop02.xml");  
  10.         Math math = ctx.getBean("math", Math.class);  
  11.         int n1 = 100, n2 = 5;  
  12.         math.add(n1, n2);  
  13.         math.sub(n1, n2);  
  14.         math.mut(n1, n2);  
  15.         math.div(n1, n2);  
  16.     }  
  17.   
  18. }  

  运行结果:

详解Spring实现AOP的多种方式

  三、AspectJ切点函数

  切点函数可以定位到准确的横切逻辑位置,在前面的示例中我们只使用过execution(* com.zhangguo.Spring052.aop02.Math.*(..)),execution就是一个切点函数,但该函数只什么方法一级,如果我们要织入的范围是类或某个注解则execution就不那么好用了,其实一共有9个切点函数,有不同的针对性。

  @AspectJ使用AspectJ专门的切点表达式描述切面,Spring所支持的AspectJ表达式可分为四类:

  方法切点函数:通过描述目标类方法信息定义连接点。

  方法参数切点函数:通过描述目标类方法入参信息定义连接点。

  目标类切点函数:通过描述目标类类型信息定义连接点。

  代理类切点函数:通过描述代理类信息定义连接点。

  常见的AspectJ表达式函数:

  execution():满足匹配模式字符串的所有目标类方法的连接点

  @annotation():任何标注了指定注解的目标方法链接点

  args():目标类方法运行时参数的类型指定连接点

  @args():目标类方法参数中是否有指定特定注解的连接点

  within():匹配指定的包的所有连接点

  target():匹配指定目标类的所有方法

  @within():匹配目标对象拥有指定注解的类的所有方法

  @target():匹配当前目标对象类型的执行方法,其中目标对象持有指定的注解

  this():匹配当前AOP代理对象类型的所有执行方法

  最常用的是:execution(<修饰符模式>?<返回类型模式><方法名模式>(<参数模式>)<异常模式>?)切点函数,可以满足多数需求。

  为了展示各切点函数的功能现在新增一个类StrUtil,类如下:

Java代码
  1. package com.zhangguo.Spring052.aop03;  
  2.   
  3. import org.springframework.stereotype.Component;  
  4.   
  5. @Component("strUtil")  
  6. public class StrUtil {  
  7.     public void show(){  
  8.         System.out.println("Hello StrUtil!");  
  9.     }  
  10. }  

  测试代码如下:

Java代码
  1. package com.zhangguo.Spring052.aop03;  
  2.   
  3. import org.springframework.context.ApplicationContext;  
  4. import org.springframework.context.support.ClassPathXmlApplicationContext;  
  5.   
  6. public class Test {  
  7.   
  8.     public static void main(String[] args) {  
  9.         ApplicationContext ctx = new ClassPathXmlApplicationContext("aop03.xml");  
  10.         IMath math = ctx.getBean("math", Math.class);  
  11.         int n1 = 100, n2 = 5;  
  12.         math.add(n1, n2);  
  13.         math.sub(n1, n2);  
  14.         math.mut(n1, n2);  
  15.         math.div(n1, n2);  
  16.           
  17.         StrUtil strUtil=ctx.getBean("strUtil",StrUtil.class);  
  18.         strUtil.show();  
  19.     }  
  20.   
  21. }  

  3.1、切点函数execution,通知与切面的定义如下:

Java代码
  1. package com.zhangguo.Spring052.aop03;  
  2.   
  3. import org.aspectj.lang.JoinPoint;  
  4. import org.aspectj.lang.annotation.After;  
  5. import org.aspectj.lang.annotation.Aspect;  
  6. import org.aspectj.lang.annotation.Before;  
  7. import org.springframework.stereotype.Component;  
  8.   
  9. /** 
  10.  * 通知类,横切逻辑 
  11.  * 
  12.  */  
  13. @Component  
  14. @Aspect  
  15. public class Advices {  
  16.     @Before("execution(* com.zhangguo.Spring052.aop03.Math.*(..))")  
  17.     public void before(JoinPoint jp){  
  18.         System.out.println("----------前置通知----------");  
  19.         System.out.println(jp.getSignature().getName());  
  20.     }  
  21.       
  22.     //execution切点函数  
  23.     //com.zhangguo.Spring052.aop03包下所有类的所有方法被切入  
  24.     @After("execution(* com.zhangguo.Spring052.aop03.*.*(..))")  
  25.     public void after(JoinPoint jp){  
  26.         System.out.println("----------最终通知----------");  
  27.     }  
  28. }  

  运行结果如下:

详解Spring实现AOP的多种方式

  execution(<修饰符模式>?<返回类型模式><方法名模式>(<参数模式>)<异常模式>?)

  3.2、切点函数within

Java代码
  1. //within切点函数  
  2. //com.zhangguo.Spring052.aop03包下所有类的所有方法被切入  
  3. @After("within(com.zhangguo.Spring052.aop03.*)")  
  4. public void after(JoinPoint jp){  
  5.     System.out.println("----------最终通知----------");  
  6. }  

详解Spring实现AOP的多种方式

  3.3、this切点函数

Java代码
  1. //this切点函数  
  2. //实现了IMath接口的代理对象的任意连接点  
  3. @After("this(com.zhangguo.Spring052.aop03.IMath)")  
  4. public void after(JoinPoint jp){  
  5.     System.out.println("----------最终通知----------");  
  6. }  

详解Spring实现AOP的多种方式

    3.4、args切点函数

Java代码
  1. //args切点函数  
  2. //要求方法有两个int类型的参考才会被织入横切逻辑  
  3. @After("args(int,int)")  
  4. public void after(JoinPoint jp){  
  5.     System.out.println("----------最终通知----------");  
  6. }  

详解Spring实现AOP的多种方式

  如果参数类型不是基本数据类型则需要包名。

  3.5、@annotation切点函数

  先自定义一个可以注解在方法上的注解

Java代码
  1. package com.zhangguo.Spring052.aop03;  
  2.   
  3. import java.lang.annotation.Documented;  
  4. import java.lang.annotation.ElementType;  
  5. import java.lang.annotation.Retention;  
  6. import java.lang.annotation.RetentionPolicy;  
  7. import java.lang.annotation.Target;  
  8.   
  9. @Target({ElementType.METHOD})  
  10. @Retention(RetentionPolicy.RUNTIME)  
  11. @Documented  
  12. public @interface MyAnno {  
  13. }  
Java代码
  1. //@annotation切点函数  
  2. //要求方法必须被注解com.zhangguo.Spring052.aop03.MyAnno才会被织入横切逻辑  
  3. @After("@annotation(com.zhangguo.Spring052.aop03.MyAnno)")  
  4. public void after(JoinPoint jp){  
  5.     System.out.println("----------最终通知----------");  
  6. }  
Java代码
  1. package com.zhangguo.Spring052.aop03;  
  2.   
  3. import org.springframework.stereotype.Component;  
  4.   
  5. @Component("strUtil")  
  6. public class StrUtil {  
  7.     @MyAnno  
  8.     public void show(){  
  9.         System.out.println("Hello StrUtil!");  
  10.     }  
  11. }  

  运行结果:

详解Spring实现AOP的多种方式

  其它带@的切点函数都是针对注解的

  四、AspectJ通知注解

  AspectJ通知注解共有6个,常用5个,引介少用一些。

  先解决定义切点复用的问题,如下代码所示,切点函数的内容完全一样:

Java代码
  1. package com.zhangguo.Spring052.aop04;  
  2.   
  3. import org.aspectj.lang.JoinPoint;  
  4. import org.aspectj.lang.annotation.After;  
  5. import org.aspectj.lang.annotation.Aspect;  
  6. import org.aspectj.lang.annotation.Before;  
  7. import org.springframework.stereotype.Component;  
  8.   
  9. /** 
  10.  * 通知类,横切逻辑 
  11.  * 
  12.  */  
  13. @Component  
  14. @Aspect  
  15. public class Advices {  
  16.     @Before("execution(* com.zhangguo.Spring052.aop04.Math.*(..))")  
  17.     public void before(JoinPoint jp){  
  18.         System.out.println("----------前置通知----------");  
  19.         System.out.println(jp.getSignature().getName());  
  20.     }  
  21.       
  22.     @After("execution(* com.zhangguo.Spring052.aop04.Math.*(..))")  
  23.     public void after(JoinPoint jp){  
  24.         System.out.println("----------最终通知----------");  
  25.     }  
  26. }  

  可以先定义一个切点然后复用,如下所示:

Java代码
  1. package com.zhangguo.Spring052.aop04;  
  2.   
  3. import org.aspectj.lang.JoinPoint;  
  4. import org.aspectj.lang.annotation.After;  
  5. import org.aspectj.lang.annotation.Aspect;  
  6. import org.aspectj.lang.annotation.Before;  
  7. import org.aspectj.lang.annotation.Pointcut;  
  8. import org.springframework.stereotype.Component;  
  9.   
  10. /** 
  11.  * 通知类,横切逻辑 
  12.  */  
  13. @Component  
  14. @Aspect  
  15. public class Advices {  
  16.     //切点  
  17.     @Pointcut("execution(* com.zhangguo.Spring052.aop04.Math.*(..))")  
  18.     public void pointcut(){  
  19.     }  
  20.       
  21.     @Before("pointcut()")  
  22.     public void before(JoinPoint jp){  
  23.         System.out.println("----------前置通知----------");  
  24.         System.out.println(jp.getSignature().getName());  
  25.     }  
  26.       
  27.     @After("pointcut()")  
  28.     public void after(JoinPoint jp){  
  29.         System.out.println("----------最终通知----------");  
  30.     }  
  31. }  

  修改Advices.java文件,增加各种通知类型如下:

Java代码
  1. package com.zhangguo.Spring052.aop04;  
  2.   
  3. import org.aspectj.lang.JoinPoint;  
  4. import org.aspectj.lang.ProceedingJoinPoint;  
  5. import org.aspectj.lang.annotation.After;  
  6. import org.aspectj.lang.annotation.AfterReturning;  
  7. import org.aspectj.lang.annotation.AfterThrowing;  
  8. import org.aspectj.lang.annotation.Around;  
  9. import org.aspectj.lang.annotation.Aspect;  
  10. import org.aspectj.lang.annotation.Before;  
  11. import org.aspectj.lang.annotation.Pointcut;  
  12. import org.springframework.stereotype.Component;  
  13.   
  14. /** 
  15.  * 通知类,横切逻辑 
  16.  */  
  17. @Component  
  18. @Aspect  
  19. public class Advices {  
  20.     //切点  
  21.     @Pointcut("execution(* com.zhangguo.Spring052.aop04.Math.a*(..))")  
  22.     public void pointcut(){  
  23.     }  
  24.       
  25.     //前置通知  
  26.     @Before("pointcut()")  
  27.     public void before(JoinPoint jp){  
  28.         System.out.println(jp.getSignature().getName());  
  29.         System.out.println("----------前置通知----------");  
  30.     }  
  31.       
  32.     //最终通知  
  33.     @After("pointcut()")  
  34.     public void after(JoinPoint jp){  
  35.         System.out.println("----------最终通知----------");  
  36.     }  
  37.       
  38.     //环绕通知  
  39.     @Around("execution(* com.zhangguo.Spring052.aop04.Math.s*(..))")  
  40.     public Object around(ProceedingJoinPoint pjp) throws Throwable{  
  41.         System.out.println(pjp.getSignature().getName());  
  42.         System.out.println("----------环绕前置----------");  
  43.         Object result=pjp.proceed();  
  44.         System.out.println("----------环绕后置----------");  
  45.         return result;  
  46.     }  
  47.       
  48.     //返回结果通知  
  49.     @AfterReturning(pointcut="execution(* com.zhangguo.Spring052.aop04.Math.m*(..))",returning="result")  
  50.     public void afterReturning(JoinPoint jp,Object result){  
  51.         System.out.println(jp.getSignature().getName());  
  52.         System.out.println("结果是:"+result);  
  53.         System.out.println("----------返回结果----------");  
  54.     }  
  55.       
  56.     //异常后通知  
  57.     @AfterThrowing(pointcut="execution(* com.zhangguo.Spring052.aop04.Math.d*(..))",throwing="exp")  
  58.     public void afterThrowing(JoinPoint jp,Exception exp){  
  59.         System.out.println(jp.getSignature().getName());  
  60.         System.out.println("异常消息:"+exp.getMessage());  
  61.         System.out.println("----------异常通知----------");  
  62.     }  
  63. }  

  运行结果:

详解Spring实现AOP的多种方式

  五、零配置实现Spring IoC与AOP

  为了实现零配置在原有示例的基础上我们新增一个类User,如下所示:

Java代码
  1. package com.zhangguo.Spring052.aop05;  
  2.   
  3. public class User {  
  4.     public void show(){  
  5.         System.out.println("一个用户对象");  
  6.     }  
  7. }  

  该类并未注解,容器不会自动管理。因为没有xml配置文件,则使用一个作为配置信息,ApplicationCfg.java文件如下:

Java代码
  1. package com.zhangguo.Spring052.aop05;  
  2.   
  3. import org.springframework.context.annotation.Bean;  
  4. import org.springframework.context.annotation.ComponentScan;  
  5. import org.springframework.context.annotation.Configuration;  
  6. import org.springframework.context.annotation.EnableAspectJAutoProxy;  
  7.   
  8. @Configuration  //用于表示当前类为容器的配置类,类似<beans/>  
  9. @ComponentScan(basePackages="com.zhangguo.Spring052.aop05")  //扫描的范围,相当于xml配置的结点<context:component-scan/>  
  10. @EnableAspectJAutoProxy(proxyTargetClass=true)  //自动代理,相当于<aop:aspectj-autoproxy proxy-target-class="true"></aop:aspectj-autoproxy>  
  11. public class ApplicationCfg {  
  12.     //在配置中声明一个bean,相当于<bean id=getUser class="com.zhangguo.Spring052.aop05.User"/>  
  13.     @Bean  
  14.     public User getUser(){  
  15.         return new User();  
  16.     }  
  17. }  

  该类的每一部分内容基本都与xml 配置有一对一的关系,请看注释,这样做要比写xml方便,但不便发布后修改。测试代码如下:

Java代码
  1. package com.zhangguo.Spring052.aop05;  
  2.   
  3. import org.springframework.context.ApplicationContext;  
  4. import org.springframework.context.annotation.AnnotationConfigApplicationContext;  
  5. import org.springframework.context.support.ClassPathXmlApplicationContext;  
  6.   
  7. public class Test {  
  8.   
  9.     public static void main(String[] args) {  
  10.         // 通过类初始化容器  
  11.         ApplicationContext ctx = new AnnotationConfigApplicationContext(ApplicationCfg.class);  
  12.         Math math = ctx.getBean("math", Math.class);  
  13.         int n1 = 100, n2 = 0;  
  14.         math.add(n1, n2);  
  15.         math.sub(n1, n2);  
  16.         math.mut(n1, n2);  
  17.         try {  
  18.             math.div(n1, n2);  
  19.         } catch (Exception e) {  
  20.         }  
  21.           
  22.         User user=ctx.getBean("getUser",User.class);  
  23.         user.show();  
  24.     }  
  25.   
  26. }  

  advices.java 同上,没有任何变化,运行结果如下:

详解Spring实现AOP的多种方式

  六、示例下载

  点击下载

除非特别注明,鸡啄米文章均为原创
转载请标明本文地址:http://www.jizhuomi.com/software/732.html
2017年5月27日
作者:鸡啄米 分类:软件开发 浏览: 评论:0