在某些时候,我们工程中使用的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
命名空间,除非特殊情况外,为了节约空间,这部分将在给出的代码中省略),粗体内容即为我们需要添加的内容
- <?
xml
version
=
"1.0"
encoding
=
"UTF-8"
?>
- <
beans
xmlns
=
"http://www.springframework.org/schema/beans"
- xmlns:xsi
=
"http://www.w3.org/2001/XMLSchema-instance"
- xmlns:aop
=
"http://www.springframework.org/schema/aop"
- xsi:schemaLocation
="http://www.springframework.org/schema/beans
- http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
- http://www.springframework.org/schema/aop
- http://www.springframework.org/schema/aop/spring-aop-2.5.xsd >
- ………… Spring配置信息
- </
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,代码如下:
- package
aop.test;
-
-
-
-
-
- public
class
People{
-
- public
String SayHello(String str){
- System.out.println(this
.getClass().getName()+
"说:"
+str);
- return
str;
- }
- }
修改Spring xml配置文件,将该类注册为一个受管Bean:
- <
bean
id
=
"TestBean"
class
=
"aop.test.People"
/>
创建含有main()方法的测试类TestMain,从Spring IoC容器中获取Peoples对象,并调用其SayHello()方法,代码如下:
- package
aop.test;
-
-
- public
class
TestMain {
- public
static
void
main(String[] args) {
-
- ApplicationContext ac = new
ClassPathXmlApplicationContext(
- "applicationContext.xml"
);
-
- People p = (People) ac.getBean("TestBean"
);
- p.SayHello("传入的参数值"
);
- }
- }
创建MyAspect类,添加一个beforeAdvice()方法作为前置通知方法,代码如下:
- package
aop.test;
-
- import
org.aspectj.lang.JoinPoint;
-
- public
class
MyAspect {
-
- public
void
beforeAdvice(JoinPoint point) {
- System.out.println("前置通知被触发:"
+
- point.getTarget().getClass().getName()+
- "将要"
+ point.getSignature().getName());
- }
- }
修改xml配置文件,为其添加aop命名空间,并把MyAspect注册为一个受管Bean,作为我们下面定义切面的backing bean。代码如下:
- <?
xml
version
=
"1.0"
encoding
=
"UTF-8"
?>
- <
beans
xmlns
=
"http://www.springframework.org/schema/beans"
- xmlns:xsi
=
"http://www.w3.org/2001/XMLSchema-instance"
- xmlns:aop
=
"http://www.springframework.org/schema/aop"
- xsi:schemaLocation
="http://www.springframework.org/schema/beans
- http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
- http://www.springframework.org/schema/aop
- http://www.springframework.org/schema/aop/spring-aop-2.5.xsd">
-
- <
bean
id
=
"MyAspect"
class
=
"aop.test.MyAspect"
/>
- <
bean
id
=
"TestBean"
class
=
"aop.test.People"
/>
-
- <
aop:config
proxy-target-class
=
"true"
>
- <
aop:aspect
ref
=
"MyAspect"
order
=
"0"
id
=
"Test"
>
- <
aop:pointcut
id
=
"testPointcut"
- expression
=
"execution(* aop..*(..))"
/>
- <
aop:before
pointcut-ref
=
"testPointcut"
- method
=
"beforeAdvice"
/>
- </
aop:aspect
>
- </
aop:config
>
- </
beans
>
运行主类,输出如下:
分享到:
相关推荐
总的来说,Spring AOP 通过动态代理技术实现了切面的插入,使得我们可以对代码进行非侵入式的增强,提高了代码的复用性和可维护性。无论是 JDK 动态代理还是 CGLIB 动态代理,它们的核心都是在方法调用时插入额外的...
Java Spring AOP(面向切面编程)是Spring框架的核心特性之一,它允许开发者在不修改原有代码的情况下,通过代理方式插入额外的功能,如日志、事务管理等。在这个主题中,我们将深入探讨Spring AOP如何处理事务管理...
Spring通过代理模式实现了AOP,主要有JDK动态代理和CGLIB代理两种方式。在源码中,`Advisor`、`Pointcut`和`Advice`等接口是描述切面的关键,而`ProxyFactoryBean`或`AspectJAutoProxyCreator`则是创建代理对象的...
赠送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;...
赠送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"压缩包中,我们主要关注的是如何利用Spring AOP来实现数据字典的功能。数据字典是系统设计中一个关键的组成部分,它存储了系统中所有数据的描述,包括数据项、数据结构、数据流、...
这份"spring源码(注释+测试版)"提供了Spring框架的源代码,带有注释和测试用例,对于开发者深入理解Spring的工作原理非常有帮助。 1. **spring-core**:这是Spring框架的基础模块,包含了核心的工具类和资源处理...
赠送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...
赠送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 框架是 Java 开发中的一个核心组件,它为构建可维护、模块化和松耦合的应用程序提供了一种强大的方式。Spring 源码注释中文版的提供,使得开发者能够更加深入地理解 Spring 的工作原理,无需经过复杂的编译...
赠送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...
赠送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如何管理依赖注入、AOP(面向切面编程)、事务管理、上下文以及其他的特性。 1. **依赖注入(Dependency Injection, DI)**:Spring的核心特性之一,允许组件之间...
赠送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...
赠送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;...
赠送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:基于XML的配置和基于注解的配置。 1. 基于XML的配置 - 配置切入点表达式:在`<aop:config>`标签内,使用`<aop:pointcut>`定义切入点表达式,如: ```xml <aop:pointcut id=...
赠送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...
赠送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-...
一阶段 1、Spring概述 2、一切从bean开始 ...Spring AOP的涉及原理及具体实践 SpringJDBC的涉及原理及二次开发 SpringMVC框架设计原理及手写实现 四阶段 Spring事务源码解析 需要其他源码请私信我