版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
1、本文主要简单的介绍了如何基于Annotation方式使用AOP。本文测试使用的是Spring3.1 + AspectJ1.6. 一 示例代码1.IHelloWord.javapackage com.SpringAOP.HelloWord;public interface IHelloWord public void sayHello(String message);2.HelloWord.javapackage com.SpringAOP.HelloWord;public class HelloWord implements IHelloWord public void
2、sayHello(String message) System.out.println(message); /int i=10/0; 3.HelloWordAspect.javapackage com.SpringAOP.HelloWord;import org.aspectj.lang.JoinPoint;import org.aspectj.lang.ProceedingJoinPoint;import org.aspectj.lang.annotation.After;import org.aspectj.lang.annotation.AfterReturning;import org
3、.aspectj.lang.annotation.AfterThrowing;import org.aspectj.lang.annotation.Around;import org.aspectj.lang.annotation.Aspect;import org.aspectj.lang.annotation.Before;Aspectpublic class HelloWordAspect Before(value="execution(* com.SpringAOP.HelloWord.HelloWord.*(.)") public void beforeSayHe
4、llo(JoinPoint joinPoint) System.out.println("Before :"+joinPoint.getArgs()0); After(value="execution(public void com.SpringAOP.HelloWord.HelloWord.sayHello(.) && args(message)") public void afterSayHello(String message) System.out.println("After : "+message); Ar
5、ound(value="execution(public void com.SpringAOP.HelloWord.HelloWord.sayHello(.)") public void aroundSayHello(ProceedingJoinPoint joinPoint) throws Throwable System.out.println("Around Before ! "); joinPceed(); System.out.println("Around After ! "); AfterThrowing
6、(value="execution(public void com.SpringAOP.HelloWord.HelloWord.sayHello(.)",throwing="ex") public void afterThrowingSayHello(Exception ex) System.out.println("After Throwing : "+ex.getMessage(); AfterReturning(value="execution(public void com.SpringAOP.HelloWord.H
7、elloWord.sayHello(.)",returning="reval") public void afterReturningSayHello(String reval) System.out.println("After Returning : "+reval); 4.HelloWord.xml<beans xmlns="/schema/beans" xmlns:xsi="/2001/XMLSchema-ins
8、tance" xmlns:aop="/schema/aop" xsi:schemaLocation="/schema/beans /schema/beans/spring-beans-3.0.xsd /schema/context /schema/context/spr
9、ing-context-3.0.xsd /schema/util /schema/util/spring-util-3.0.xsd /schema/aop /schema/aop/spring-aop-3.0.xsd"> <aop:aspectj-autoproxy></aop:aspectj-autoproxy> <b
10、ean class="org.springframework.aop.aspectj.annotation.AnnotationAwareAspectJAutoProxyCreator" /> <bean id="helloWordAspect" class="com.SpringAOP.HelloWord.HelloWordAspect"></bean> <bean id="helloWord" class="com.SpringAOP.HelloWord.Hello
11、Word"></bean></beans>5.HelloWordTest.javapackage com.SpringAOP.HelloWord;import org.junit.Test;import org.springframework.context.ApplicationContext;import org.springframework.context.support.ClassPathXmlApplicationContext;public class HelloWordTest Test public void test() Applic
12、ationContext ctx =new ClassPathXmlApplicationContext("com/SpringAOP/HelloWord/HelloWord.xml"); IHelloWord helloWord = (IHelloWord)ctx.getBean("helloWord"); helloWord.sayHello("Hello Word!"); 6.需要导入的包7.运行结果二 说明1.pointcut语法execution for matching method execution join poin
13、tswithin 指定连接点所在的Java类型。this bean reference (Spring AOP proxy) is an instance of the given type target the target object (application object being proxied) is an instance of the given typeargs 指定传入到连接点的参数target the class of the executing object has an annotation of the given typeargs the runti
14、me type of the actual arguments passed have annotations of the given type(s)within limits matching to join points within types that have the given annotationannotation the subject of the join point (method being executed in Spring AOP) has the given annotation组合pointcut表达式可以使用 && 、| 、! 组合poi
15、ntcut表达式。execution格式execution(可见性(可选) 使用public、protected、private指定可见性。也可以为*,表示任意可见性返回值类型(必须) 指定返回值类型声明类型(可选) java包方法名(参数模式)(必须) 方法名称,和方法接收的参数 异常模式(可选) 指定方法签名中是否存在异常类型)在pointcut表达式中可以使用 * 、. 、 +等通配符。* :表示若干字符(排除 . 在外). :表示若干字符(包括 . 在内)+ :表示子类 ,比如Info+ 表示Info类及其子类2.定义Adviceadvice在关联的pointcu
16、t表达式的方法运行前(before)、运行后(after)、运行前后(around)执行。Before Advice:使用Before定义Before Advice。参数:value :绑定到Advice的Pointcut表达式After returning advice在匹配的方法执行之后运行该Adivce。使用AfterReturning进行注释。参数:value、pointcut:绑定到Advice的Pointcut表达式returning:String类型,将方法的返回值绑定到Advice的参数名上。After throwing advice在pointcut匹配的方法抛出异常后,执行
17、pointcut关联的Advice。使用AfterThrowing进行注解。参数:value、pointcut:绑定到Advice的Pointcut表达式throwing:String类型,将抛出的异常绑定到Advice的参数上。After advice使用After进行注解。参数:value :绑定到Advice的Pointcut表达式3.参数 使用JoinPoint可以在Advice中的第一个参数中定义org.aspectj.lang.JoinPoint类型的参数(在around Advice中使用ProceedingJoinPoint类型的参数)java.lang.Object getArgs()
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 《AE抠像技术》课件
- 2024年度矿井废弃物处理与生态恢复合同
- 电气专项:企业用电安全管理
- 2024年国际马拉松赛道草坪种植合同
- 2024年度单位与物业公司安保服务合同:确保单位财产安全的合作协议
- 2024年度苗木运输及保险服务合同
- 《食品添加剂的毒性》课件
- 2024年度园林景观电照施工合同2篇
- 2024年度股权投资合同:企业投资与股权转让协议
- 2024中国移动湖北公司春季校园招聘易考易错模拟试题(共500题)试卷后附参考答案
- 国开(河北)2024年《公文写作》形考作业4答案
- 电信行业移动通信网络质量提升方案
- 2024年成都港汇人力资源管理限公司面向社会公开招聘国企业工作人员高频500题难、易错点模拟试题附带答案详解
- 2021年山东省职业院校技能大赛导游服务赛项-导游英语口语测试题库
- 2024年海南省中考数学试卷含解析
- 文印竞标合同范本
- 工程绿色施工管理实施规划方案(中建集团)
- 北京版四年级上册数学计算题专项练习1000道带答案
- 2024至2030年中国汽车EPS无刷电机行业市场前景预测与发展趋势研究报告
- 健身器材采购合同
- 移动厕所投标方案(技术方案)
评论
0/150
提交评论