`
sunqitang
  • 浏览: 77057 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

spirng aop(非注释方式)

    博客分类:
  • SSH
阅读更多

   在某些时候,我们工程中使用的JDK 不一定就是1.5 以上,也就是说可能不支持Annotation 注解,这时自然也就不能使用@AspectJ 注解驱动的AOP 了,那么如果我们仍然想使用AspectJ 灵活的切入点表达式,那么该如何呢?Spring 为我们提供了基于xml schematic 的aop 命名空间,它的使用方式和@AspectJ 注解类似,不同的是配置信息从注解中转移到了Spring 配置文件中。在这里,我们将详细介绍如何使用Spring 提供的<aop:config/> 标签来配置Spring AOP 。


1 、一点准备工作和一个例子

    使用<aop:config/> 标签,需要给Spring 配置文件中引入基于xml schema 的Spring AOP 命名空间。完成后的Spring 配置文件如下(在该节,所有例程的配置文件中添加了Spring AOP 命名空间,除非特殊情况外,为了节约空间,这部分将在给出的代码中省略),粗体内容即为我们需要添加的内容

 

  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:aop = "http://www.springframework.org/schema/aop"   
  5.         xsi:schemaLocation ="http://www.springframework.org/schema/beans  
  6.               http://www.springframework.org/schema/beans/spring-beans-2.5.xsd   
  7.               http://www.springframework.org/schema/aop   
  8.               http://www.springframework.org/schema/aop/spring-aop-2.5.xsd >   
  9. ………… Spring配置信息  
  10. </ beans >   

    关于aop命名空间的标签,我们前面使用过的有<aop:aspectj-autoproxy/>,在这一节,我们将以<aop:config/>标签作为重点。事实上,我们在这一节介绍的所有标签都是该标签的子标签。


   下面有一个例程来直观的展示如何使用<aop:config/>标签来配置Spring AOP(完整代码见例程4.15)。在例子中,我们使用<aop:config/>配置一个切面并拦截目标对象Peoples的 SayHello()方法,在它执行前输出提示信息。
首先创建工程AOP_Test4.15,添加Spring IoC和Spring AOP库后,创建aop.test包,新建目标类People,代码如下:

 

代码    查看源代码 打印
  1. package  aop.test;  
  2.   
  3. /**  
  4.  * 该类将作为目标对象对应的类。  
  5.  * @author zhangyong  
  6.  * */   
  7. public   class  People{  
  8.   
  9.         public  String SayHello(String str){  
  10.                 System.out.println(this .getClass().getName()+  "说:" +str);  
  11.                 return  str;  
  12.         }  
  13. }  

    修改Spring xml配置文件,将该类注册为一个受管Bean:

 

代码    查看源代码 打印
  1. < bean   id = "TestBean"   class = "aop.test.People"   />   

    创建含有main()方法的测试类TestMain,从Spring IoC容器中获取Peoples对象,并调用其SayHello()方法,代码如下:

 

代码    查看源代码 打印
  1. package  aop.test;  
  2.   
  3. // import省略   
  4. public   class  TestMain {  
  5.         public   static   void  main(String[] args) {  
  6.                 // 实例化Spring IoC容器   
  7.                 ApplicationContext ac = new  ClassPathXmlApplicationContext(  
  8.                                 "applicationContext.xml" );  
  9.                 // 获取受管Bean的实例   
  10.                 People p = (People) ac.getBean("TestBean" );  
  11.                 p.SayHello("传入的参数值" );  
  12.         }  
  13. }  

   创建MyAspect类,添加一个beforeAdvice()方法作为前置通知方法,代码如下:

 

代码    查看源代码 打印
  1. package  aop.test;  
  2.   
  3. import  org.aspectj.lang.JoinPoint;  
  4.   
  5. public   class  MyAspect {  
  6.           
  7.         public   void  beforeAdvice(JoinPoint point) {  
  8.             System.out.println("前置通知被触发:"  +   
  9.                                 point.getTarget().getClass().getName()+   
  10.                                 "将要"  + point.getSignature().getName());  
  11.         }  
  12. }  

    修改xml配置文件,为其添加aop命名空间,并把MyAspect注册为一个受管Bean,作为我们下面定义切面的backing bean。代码如下:

 

代码    查看源代码 打印
  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:aop = "http://www.springframework.org/schema/aop"   
  5.         xsi:schemaLocation ="http://www.springframework.org/schema/beans  
  6. http://www.springframework.org/schema/beans/spring-beans-2.5.xsd   
  7.                http://www.springframework.org/schema/aop   
  8. http://www.springframework.org/schema/aop/spring-aop-2.5.xsd">   
  9.   
  10.         < bean   id = "MyAspect"   class = "aop.test.MyAspect"   />   
  11.         < bean   id = "TestBean"   class = "aop.test.People"   />   
  12.           
  13.         < aop:config   proxy-target-class = "true" >   
  14.                 < aop:aspect   ref = "MyAspect"   order = "0"   id = "Test" >   
  15.                         < aop:pointcut   id = "testPointcut"   
  16.                                 expression = "execution(* aop..*(..))"   />   
  17.                         < aop:before   pointcut-ref = "testPointcut"   
  18.                                 method = "beforeAdvice"   />   
  19.                 </ aop:aspect >   
  20.         </ aop:config >   
  21. </ beans >   

    运行主类,输出如下:

例程4.15输出结果

分享到:
评论

相关推荐

    死磕Spring之AOP篇 - Spring AOP两种代理对象的拦截处理(csdn)————程序.pdf

    总的来说,Spring AOP 通过动态代理技术实现了切面的插入,使得我们可以对代码进行非侵入式的增强,提高了代码的复用性和可维护性。无论是 JDK 动态代理还是 CGLIB 动态代理,它们的核心都是在方法调用时插入额外的...

    java springAOP 事务+注释

    Java Spring AOP(面向切面编程)是Spring框架的核心特性之一,它允许开发者在不修改原有代码的情况下,通过代理方式插入额外的功能,如日志、事务管理等。在这个主题中,我们将深入探讨Spring AOP如何处理事务管理...

    spring 源码中文注释

    Spring通过代理模式实现了AOP,主要有JDK动态代理和CGLIB代理两种方式。在源码中,`Advisor`、`Pointcut`和`Advice`等接口是描述切面的关键,而`ProxyFactoryBean`或`AspectJAutoProxyCreator`则是创建代理对象的...

    spring-aop-5.2.0.RELEASE-API文档-中文版.zip

    赠送jar包:spring-aop-5.2.0.RELEASE.jar; 赠送原API文档:spring-aop-5.2.0.RELEASE-javadoc.jar; 赠送源代码:spring-aop-5.2.0.RELEASE-sources.jar; 赠送Maven依赖信息文件:spring-aop-5.2.0.RELEASE.pom;...

    spring-aop-5.0.8.RELEASE-API文档-中英对照版.zip

    赠送jar包:spring-aop-5.0.8.RELEASE.jar; 赠送原API文档:spring-aop-5.0.8.RELEASE-javadoc.jar; 赠送源代码:spring-aop-5.0.8.RELEASE-sources.jar; 赠送Maven依赖信息文件:spring-aop-5.0.8.RELEASE.pom;...

    springAOP实现数据字典.zip

    在这个"springAOP实现数据字典.zip"压缩包中,我们主要关注的是如何利用Spring AOP来实现数据字典的功能。数据字典是系统设计中一个关键的组成部分,它存储了系统中所有数据的描述,包括数据项、数据结构、数据流、...

    spring源码(注释+测试版)

    这份"spring源码(注释+测试版)"提供了Spring框架的源代码,带有注释和测试用例,对于开发者深入理解Spring的工作原理非常有帮助。 1. **spring-core**:这是Spring框架的基础模块,包含了核心的工具类和资源处理...

    spring-aop-5.3.15-API文档-中英对照版.zip

    赠送jar包:spring-aop-5.3.15.jar; 赠送原API文档:spring-aop-5.3.15-javadoc.jar; 赠送源代码:spring-aop-5.3.15-sources.jar; 赠送Maven依赖信息文件:spring-aop-5.3.15.pom; 包含翻译后的API文档:spring...

    spring-aop-5.0.10.RELEASE-API文档-中文版.zip

    赠送jar包:spring-aop-5.0.10.RELEASE.jar; 赠送原API文档:spring-aop-5.0.10.RELEASE-javadoc.jar; 赠送源代码:spring-aop-5.0.10.RELEASE-sources.jar; 赠送Maven依赖信息文件:spring-aop-5.0.10.RELEASE....

    spring源码注释中文

    Spring 框架是 Java 开发中的一个核心组件,它为构建可维护、模块化和松耦合的应用程序提供了一种强大的方式。Spring 源码注释中文版的提供,使得开发者能够更加深入地理解 Spring 的工作原理,无需经过复杂的编译...

    spring-aop-5.3.12-API文档-中英对照版.zip

    赠送jar包:spring-aop-5.3.12.jar; 赠送原API文档:spring-aop-5.3.12-javadoc.jar; 赠送源代码:spring-aop-5.3.12-sources.jar; 赠送Maven依赖信息文件:spring-aop-5.3.12.pom; 包含翻译后的API文档:spring...

    spring-aop-5.2.15.RELEASE-API文档-中文版.zip

    赠送jar包:spring-aop-5.2.15.RELEASE.jar; 赠送原API文档:spring-aop-5.2.15.RELEASE-javadoc.jar; 赠送源代码:spring-aop-5.2.15.RELEASE-sources.jar; 赠送Maven依赖信息文件:spring-aop-5.2.15.RELEASE....

    spring源码中英文注释

    通过阅读源码和注释,我们可以更清晰地了解Spring如何管理依赖注入、AOP(面向切面编程)、事务管理、上下文以及其他的特性。 1. **依赖注入(Dependency Injection, DI)**:Spring的核心特性之一,允许组件之间...

    spring-aop-5.3.10-API文档-中文版.zip

    赠送jar包:spring-aop-5.3.10.jar; 赠送原API文档:spring-aop-5.3.10-javadoc.jar; 赠送源代码:spring-aop-5.3.10-sources.jar; 赠送Maven依赖信息文件:spring-aop-5.3.10.pom; 包含翻译后的API文档:spring...

    spring-aop-5.1.3.RELEASE-API文档-中英对照版.zip

    赠送jar包:spring-aop-5.1.3.RELEASE.jar; 赠送原API文档:spring-aop-5.1.3.RELEASE-javadoc.jar; 赠送源代码:spring-aop-5.1.3.RELEASE-sources.jar; 赠送Maven依赖信息文件:spring-aop-5.1.3.RELEASE.pom;...

    spring-aop-4.2.2.RELEASE-API文档-中文版.zip

    赠送jar包:spring-aop-4.2.2.RELEASE.jar; 赠送原API文档:spring-aop-4.2.2.RELEASE-javadoc.jar; 赠送源代码:spring-aop-4.2.2.RELEASE-sources.jar; 赠送Maven依赖信息文件:spring-aop-4.2.2.RELEASE.pom;...

    spring的aop配置

    在Spring中,有两种方式来配置AOP:基于XML的配置和基于注解的配置。 1. 基于XML的配置 - 配置切入点表达式:在`&lt;aop:config&gt;`标签内,使用`&lt;aop:pointcut&gt;`定义切入点表达式,如: ```xml &lt;aop:pointcut id=...

    spring-aop-5.3.15-API文档-中文版.zip

    赠送jar包:spring-aop-5.3.15.jar; 赠送原API文档:spring-aop-5.3.15-javadoc.jar; 赠送源代码:spring-aop-5.3.15-sources.jar; 赠送Maven依赖信息文件:spring-aop-5.3.15.pom; 包含翻译后的API文档:spring...

    spring-aop-4.3.20.RELEASE-API文档-中英对照版.zip

    赠送jar包:spring-aop-4.3.20.RELEASE.jar 赠送原API文档:spring-aop-4.3.20.RELEASE-javadoc.jar 赠送源代码:spring-aop-4.3.20.RELEASE-sources.jar 包含翻译后的API文档:spring-aop-4.3.20.RELEASE-...

    Spring源码解析4章150页+Spring3.2.4中文注释源码

    一阶段 1、Spring概述 2、一切从bean开始 ...Spring AOP的涉及原理及具体实践 SpringJDBC的涉及原理及二次开发 SpringMVC框架设计原理及手写实现 四阶段 Spring事务源码解析 需要其他源码请私信我

Global site tag (gtag.js) - Google Analytics