此前对于AOP的使用仅限于声明式事务,除此之外在实际开发中也没有遇到过与之相关的问题。最近项目中遇到了以下几点需求,仔细思考之后,觉得采用AOP 来解决。一方面是为了以更加灵活的方式来解决问题,另一方面是借此机会深入学习Spring AOP相关的内容。本文是权当本人的自己AOP学习笔记,以下需求不用AOP肯定也能解决,至于是否牵强附会,仁者见仁智者见智。
- 对部分函数的调用进行日志记录,用于观察特定问题在运行过程中的函数调用情况
- 监控部分重要函数,若抛出指定的异常,需要以短信或邮件方式通知相关人员
- 金控部分重要函数的执行时间
事实上,以上需求没有AOP也能搞定,只是在实现过程中比较郁闷摆了。
- 需要打印日志的函数分散在各个包中,只能找到所有的函数体,手动添加日志。然而这些日志都是临时的,待问题解决之后应该需要清除打印日志的代码,只能再次手动清除^_^!
- 类似1的情况,需要捕获异常的地方太多,如果手动添加时想到很可能明天又要手动清除,只能再汗。OK,该需求相对比较固定,属于长期监控的范畴,并不需求临时添加后再清除。然而,客户某天要求,把其中20%的异常改为短信提醒,剩下的80%改用邮件提醒。改之,两天后,客户抱怨短信太多,全部改成邮件提醒...
- 该需求通常用于监控某些函数的执行时间,用以判断系统执行慢的瓶颈所在。瓶颈被解决之后,烦恼同情况1
终于下定决心,采用AOP来解决!代码如下:
切面类TestAspect
- packagecom.spring.aop;
-
-
publicclassTestAspect{
-
-
publicvoiddoAfter(JoinPointjp){
-
System.out.println("logEndingmethod:"
-
+jp.getTarget().getClass().getName()+"."
-
+jp.getSignature().getName());
-
}
-
-
publicObjectdoAround(ProceedingJoinPointpjp)throwsThrowable{
-
longtime=System.currentTimeMillis();
-
ObjectretVal=pjp.proceed();
-
time=System.currentTimeMillis()-time;
-
System.out.println("processtime:"+time+"ms");
-
returnretVal;
-
}
-
-
publicvoiddoBefore(JoinPointjp){
-
System.out.println("logBeginingmethod:"
-
+jp.getTarget().getClass().getName()+"."
-
+jp.getSignature().getName());
-
}
-
-
publicvoiddoThrowing(JoinPointjp,Throwableex){
-
System.out.println("method"+jp.getTarget().getClass().getName()
-
+"."+jp.getSignature().getName()+"throwexception");
-
System.out.println(ex.getMessage());
-
}
-
-
privatevoidsendEx(Stringex){
-
-
}
-
}
- packagecom.spring.service;
-
-
publicinterfaceAService{
-
-
publicvoidfooA(String_msg);
-
-
publicvoidbarA();
-
}
- packagecom.spring.service;
-
-
publicclassAServiceImplimplementsAService{
-
-
publicvoidbarA(){
-
System.out.println("AServiceImpl.barA()");
-
}
-
-
publicvoidfooA(String_msg){
-
System.out.println("AServiceImpl.fooA(msg:"+_msg+")");
-
}
-
}
- packagecom.spring.service;
-
-
-
-
publicclassBServiceImpl{
-
-
publicvoidbarB(String_msg,int_type){
-
System.out.println("BServiceImpl.barB(msg:"+_msg+"type:"+_type+")");
-
if(_type==1)
-
thrownewIllegalArgumentException("测试异常");
-
}
-
-
publicvoidfooB(){
-
System.out.println("BServiceImpl.fooB()");
-
}
-
-
}
ApplicationContext
- <?xmlversion="1.0"encoding="UTF-8"?>
-
<beansxmlns="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:
-
http:
-
http:
-
http:
-
default-autowire="autodetect">
-
<aop:config>
-
<aop:aspectid="TestAspect"ref="aspectBean">
-
<!--配置com.spring.service包下所有类或接口的所有方法-->
-
<aop:pointcutid="businessService"
-
expression="execution(*com.spring.service.*.*(..))"/>
-
<aop:beforepointcut-ref="businessService"method="doBefore"/>
-
<aop:afterpointcut-ref="businessService"method="doAfter"/>
-
<aop:aroundpointcut-ref="businessService"method="doAround"/>
-
<aop:after-throwingpointcut-ref="businessService"method="doThrowing"throwing="ex"/>
-
</aop:aspect>
-
</aop:config>
-
-
<beanid="aspectBean"class="com.spring.aop.TestAspect"/>
-
<beanid="aService"class="com.spring.service.AServiceImpl"></bean>
-
<beanid="bService"class="com.spring.service.BServiceImpl"></bean>
-
-
</beans>
测试类AOPTest
-
publicclassAOPTestextendsAbstractDependencyInjectionSpringContextTests{
-
-
privateAServiceaService;
-
-
privateBServiceImplbService;
-
-
protectedString[]getConfigLocations(){
-
String[]configs=newString[]{"/applicationContext.xml"};
-
returnconfigs;
-
}
-
-
-
-
-
publicvoidtestCall()
-
{
-
System.out.println("SpringTestJUnittest");
-
aService.fooA("JUnittestfooA");
-
aService.barA();
-
bService.fooB();
-
bService.barB("JUnittestbarB",0);
-
}
-
-
-
-
publicvoidtestThrow()
-
{
-
try{
-
bService.barB("JUnitcallbarB",1);
-
}catch(IllegalArgumentExceptione){
-
-
}
-
}
-
-
publicvoidsetAService(AServiceservice){
-
aService=service;
-
}
-
-
publicvoidsetBService(BServiceImplservice){
-
bService=service;
-
}
-
}
运行结果如下:
- logBeginingmethod:com.spring.service.AServiceImpl.fooA
-
AServiceImpl.fooA(msg:JUnittestfooA)
-
logEndingmethod:com.spring.service.AServiceImpl.fooA
-
processtime:0ms
-
logBeginingmethod:com.spring.service.AServiceImpl.barA
-
AServiceImpl.barA()
-
logEndingmethod:com.spring.service.AServiceImpl.barA
-
processtime:0ms
-
logBeginingmethod:com.spring.service.BServiceImpl.fooB
-
BServiceImpl.fooB()
-
logEndingmethod:com.spring.service.BServiceImpl.fooB
-
processtime:0ms
-
logBeginingmethod:com.spring.service.BServiceImpl.barB
-
BServiceImpl.barB(msg:JUnittestbarBtype:0)
-
logEndingmethod:com.spring.service.BServiceImpl.barB
-
processtime:0ms
-
-
logBeginingmethod:com.spring.service.BServiceImpl.barB
-
BServiceImpl.barB(msg:JUnitcallbarBtype:1)
-
logEndingmethod:com.spring.service.BServiceImpl.barB
-
methodcom.spring.service.BServiceImpl.barBthrowexception
-
测试异常
《Spring参考手册》中定义了以下几个AOP的重要概念,结合以上代码分析如下:
-
切面(Aspect) :官方的抽象定义为“一个关注点的模块化,这个关注点可能会横切多个对象”,在本例中,“切面”就是类TestAspect所关注的具体行为,例如,AServiceImpl.barA()的调用就是切面TestAspect所关注的行为之一。“切面”在ApplicationContext中<aop:aspect>来配置。
-
连接点(Joinpoint) :程序执行过程中的某一行为,例如,AServiceImpl.barA()的调用或者BServiceImpl.barB(String _msg, int _type)抛出异常等行为。
-
通知(Advice) :“切面”对于某个“连接点”所产生的动作,例如,TestAspect中对com.spring.service包下所有类的方法进行日志记录的动作就是一个Advice。其中,一个“切面”可以包含多个“Advice”,例如TestAspect
-
切入点(Pointcut) :匹配连接点的断言,在AOP中通知和一个切入点表达式关联。例如,TestAspect中的所有通知所关注的连接点,都由切入点表达式execution(* com.spring.service.*.*(..))来决定
-
目标对象(Target Object) :被一个或者多个切面所通知的对象。例如,AServcieImpl和BServiceImpl,当然在实际运行时,Spring AOP采用代理实现,实际AOP操作的是TargetObject的代理对象。
-
AOP代理(AOP Proxy) 在Spring AOP中有两种代理方式,JDK动态代理和CGLIB代理。默认情况下,TargetObject实现了接口时,则采用JDK动态代理,例如,AServiceImpl;反之,采用CGLIB代理,例如,BServiceImpl。强制使用CGLIB代理需要将
<aop:config>
的
proxy-target-class
属性设为true
通知(Advice)类型
-
前置通知(Before advice) :在某连接点(JoinPoint)之前执行的通知,但这个通知不能阻止连接点前的执行。ApplicationContext中在<aop:aspect>里面使用<aop:before>元素进行声明。例如,TestAspect中的doBefore方法
-
后通知(After advice) :当某连接点退出的时候执行的通知(不论是正常返回还是异常退出)。ApplicationContext中在<aop:aspect>里面使用<aop:after>元素进行声明。例如,TestAspect中的doAfter方法,所以AOPTest中调用BServiceImpl.barB抛出异常时,doAfter方法仍然执行
-
返回后通知(After return advice) :在某连接点正常完成后执行的通知,不包括抛出异常的情况。ApplicationContext中在<aop:aspect>里面使用<after-returning>元素进行声明。
-
环绕通知(Around advice) :包围一个连接点的通知,类似Web中Servlet规范中的Filter的doFilter方法。可以在方法的调用前后完成自定义的行为,也可以选择不执行。ApplicationContext中在<aop:aspect>里面使用<aop:around>元素进行声明。例如,TestAspect中的doAround方法。
-
抛出异常后通知(After throwing advice) : 在方法抛出异常退出时执行的通知。 ApplicationContext中在<aop:aspect>里面使用<aop:after-throwing>元素进行声明。例如,TestAspect中的doThrowing方法。
切入点表达式
- 通常情况下,表达式中使用”execution“就可以满足大部分的要求。表达式格式如下:
- execution(modifiers-pattern?ret-type-patterndeclaring-type-pattern?name-pattern(param-pattern)throws-pattern?)
modifiers-pattern:方法的操作权限
ret-type-pattern:返回值
declaring-type-pattern:方法所在的包
name-pattern:方法名
parm-pattern:参数名
throws-pattern:异常
其中,除ret-type-pattern和name-pattern之外,其他都是可选的。上例中,execution(* com.spring.service.*.*(..))表示com.spring.service包下,返回值为任意类型;方法名任意;参数不作限制的所有方法。
可以通过args来绑定参数,这样就可以在通知(Advice)中访问具体参数了。例如,<aop:aspect>配置如下
-
<aop:config>
-
<aop:aspectid="TestAspect"ref="aspectBean">
-
<aop:pointcutid="businessService"
-
expression="execution(*com.spring.service.*.*(String,..))andargs(msg,..)"/>
-
<aop:afterpointcut-ref="businessService"method="doAfter"
arg-name="msg"/> --此处变量名与上面的msg要一致
-
</aop:aspect>
-
</aop:config>
TestAspect的doAfter方法中就可以访问msg参数,但这样以来AService中的barA()和BServiceImpl中的barB()就不再是连接点,因为execution(* com.spring.service.*.*(String,..))只配置第一个参数为String类型的方法。其中,doAfter方法定义如下:
- publicvoiddoAfter(JoinPointjp,Stringmsg)//或者publicvoiddoAfter(Stringmsg),参数数据类型需要和arg-name="msg"/指定的一致(此例中为String
),可以将此处的String 设置为Object
任何通知(Advice)方法可以将第一个参数定义为
org.aspectj.lang.JoinPoint
类型。JoinPoint
接口提供了一系列有用的方法, 比如getArgs()
(返回方法参数)、getThis()
(返回代理对象)、getTarget()
(返回目标)、getSignature()
(返回正在被通知的方法相关信息)和toString()
(打印
分享到:
相关推荐
ta_lib-0.5.1-cp312-cp312-win32.whl
课程设计 在线实时的斗兽棋游戏,时间赶,粗暴的使用jQuery + websoket 实现实时H5对战游戏 + java.zip课程设计
ta_lib-0.5.1-cp310-cp310-win_amd64.whl
基于springboot+vue物流系统源码数据库文档.zip
GEE训练教程——Landsat5、8和Sentinel-2、DEM和各2哦想指数下载
知识图谱
333498005787635解决keil下载失败的文件.zip
【微信机器人原理与实现】 微信机器人是通过模拟微信客户端的行为,自动处理消息、发送消息的程序。在Python中实现微信机器人的主要库是WeChatBot,它提供了丰富的接口,允许开发者方便地进行微信消息的接收与发送。这个项目标题中的"基于python实现的微信机器人源码"指的是使用Python编程语言编写的微信机器人程序。 1. **Python基础**:Python是一种高级编程语言,以其简洁的语法和强大的功能深受开发者喜爱。在实现微信机器人时,你需要熟悉Python的基本语法、数据类型、函数、类以及异常处理等概念。 2. **微信API与WeChatBot库**:微信为开发者提供了微信公共平台和微信开放平台,可以获取到必要的API来实现机器人功能。WeChatBot库是Python中一个用于微信开发的第三方库,它封装了微信的API,简化了消息处理的流程。使用WeChatBot,开发者可以快速搭建起一个微信机器人。 3. **微信OAuth2.0授权**:为了能够接入微信,首先需要通过OAuth2.0协议获取用户的授权。用户授权后,机器人可以获取到微信用户的身份信息,从而进行
基于springboot实验室研究生信息管理系统源码数据库文档.zip
张力控制,色标跟踪,多轴同步,电子凸轮,横切等工艺控制案例。
在Python编程环境中,处理Microsoft Word文档是一项常见的任务。Python提供了几个库来实现这一目标,如`python-docx`,它可以让我们创建、修改和操作.docx文件。本教程将重点介绍如何利用Python进行Word文档的合并、格式转换以及转换为PDF。 1. **合并Word文档(merge4docx)** 合并多个Word文档是一项实用的功能,特别是在处理大量报告或文档集合时。在Python中,可以使用`python-docx`库实现。我们需要导入`docx`模块,然后读取每个文档并将其内容插入到主文档中。以下是一个基本示例: ```python from docx import Document def merge4docx(file_list, output_file): main_doc = Document() for file in file_list: doc = Document(file) for paragraph in doc.paragraphs: main_doc.add_paragraph(paragraph.text) m
基于springboot+Javaweb的二手图书交易系统源码数据库文档.zip
基于springboot餐品美食论坛源码数据库文档.zip
基于springboot亚运会志愿者管理系统源码数据库文档.zip
使用WPF的数据样式绑定,切换对象数据值来完成控件动态切换背景渐变动画效果。 使用动画样式渲染比线程修改性能消耗更低更稳定
基于SpringBoot的企业客源关系管理系统源码数据库文档.zip
基于springboot+vue的桂林旅游网站系统源码数据库文档.zip
基于springboot嗨玩旅游网站源码数据库文档.zip
基于springboot的流浪动物管理系统源码数据库文档.zip
基于springboot课件通中小学教学课件共享平台源码数据库文档.zip