Spring框架是一个功能强大的Java开发框架,其中的面向切面编程(AOP)模块为开发人员提供了一种优雅的方式来处理横切关注点。本文将深入探讨Spring AOP的特点、专业术语以及不同类型的通知,帮助读者更好地理解和应用AOP的概念。
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Before;
import org.springframework.stereotype.Component;
@Aspect
@Component
public class LoggingAspect {
@Before("execution(* com.example.MyService.*(..))")
public void beforeAdvice() {
System.out.println("执行前置通知:参数校验");
}
}
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Pointcut;
import org.springframework.stereotype.Component;
@Aspect
@Component
public class LoggingAspect {
@Pointcut("execution(* com.example.MyService.*(..))")
public void myServiceMethods() {}
}
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Before;
import org.springframework.stereotype.Component;
@Aspect
@Component
public class LoggingAspect {
@Before("myServiceMethods()")
public void beforeAdvice() {
System.out.println("执行前置通知:参数校验");
}
}
前置通知是在目标方法执行之前执行的通知。它可以用于执行一些预处理操作,如参数校验、权限检查等。前置通知不会影响目标方法的执行流程,除非抛出异常中断执行。
<beans xmlns="http://www.springframework.org/schema/beans"
default-autowire="byType"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
<bean class="com.aop.biz.impl.BookBizImpl" name="bookBiz">bean>
<bean class="com.aop.biz.advice.MyMethodBeforeAdvice" id="methodBeforeAdvice">bean>
<bean class="org.springframework.aop.framework.ProxyFactoryBean" id="bookProxy">
<property name="target" ref="bookBiz">property>
<property name="proxyInterfaces">
<list>
<value>com.aop.biz.IBookBizvalue>
list>
property>
<property name="interceptorNames">
<list>
<value>methodBeforeAdvicevalue>
list>
property>
bean>
beans>
package com.aop.biz.advice;
import org.springframework.aop.MethodBeforeAdvice;
import java.lang.reflect.Method;
import java.util.Arrays;
/**
* 买书、评论前加系统日志
* @author Administrator
*
*/
public class MyMethodBeforeAdvice implements MethodBeforeAdvice {
@Override
public void before(Method arg0, Object[] arg1, Object arg2) throws Throwable {
// 在这里,可以获取到目标类的全路径及方法及方法参数,然后就可以将他们写到日志表里去
String target = arg2.getClass().getName();
String methodName = arg0.getName();
String args = Arrays.toString(arg1);
System.out.println("【前置通知:系统日志】:"+target+"."+methodName+"("+args+")被调用了");
}
}
后置通知是在目标方法执行之后执行的通知。它可以用于执行一些后处理操作,如日志记录、资源释放等。后置通知无法获取目标方法的返回值,除非通过返回通知来获取。
package com.aop.biz.advice;
import org.springframework.aop.AfterReturningAdvice;
import java.lang.reflect.Method;
import java.util.Arrays;
/**
* 买书返利
* @author Administrator
*
*/
public class MyAfterReturningAdvice implements AfterReturningAdvice {
@Override
public void afterReturning(Object arg0, Method arg1, Object[] arg2, Object arg3) throws Throwable {
String target = arg3.getClass().getName();
String methodName = arg1.getName();
String args = Arrays.toString(arg2);
System.out.println("【后置通知:买书返利】:"+target+"."+methodName+"("+args+")被调用了,"+"该方法被调用后的返回值为:"+arg0);
}
}
环绕通知是在目标方法执行前后都可以执行的通知。它可以完全控制目标方法的执行流程,包括是否执行目标方法、修改目标方法的参数和返回值等。环绕通知是最灵活的通知类型,但也最复杂。
package com.zking.aop.advice;
import java.util.Arrays;
import org.aopalliance.intercept.MethodInterceptor;
import org.aopalliance.intercept.MethodInvocation;
/**
* 环绕通知
* 包含了前置和后置通知
*
* @author Administrator
*
*/
public class MyMethodInterceptor implements MethodInterceptor {
@Override
public Object invoke(MethodInvocation arg0) throws Throwable {
String target = arg0.getThis().getClass().getName();
String methodName = arg0.getMethod().getName();
String args = Arrays.toString(arg0.getArguments());
System.out.println("【环绕通知调用前:】:"+target+"."+methodName+"("+args+")被调用了");
// arg0.proceed()就是目标对象的方法
Object proceed = arg0.proceed();
System.out.println("【环绕通知调用后:】:该方法被调用后的返回值为:"+proceed);
return proceed;
}
}
异常通知是在目标方法抛出异常时执行的通知。它可以用于处理异常情况,如记录异常日志、发送告警等。异常通知可以捕获目标方法抛出的异常,并根据需要进行处理。(注意!异常通知的方法必须是afterThrowing否则会报错!!!)
package com.aop.biz.advice;
import org.springframework.aop.ThrowsAdvice;
import com.aop.biz.Exception.PriceException;
/**
* 出现异常执行系统提示,然后进行处理。价格异常为例
* @author Administrator
*
*/
public class MyThrowsAdvice implements ThrowsAdvice {
public void afterThrowing(PriceException ex) {
System.out.println("【异常通知】:当价格发生异常,那么执行此处代码块!!!");
}
}
过滤通知是在目标方法执行前后根据条件选择是否执行的通知。它可以用于动态地决定是否织入横切逻辑,从而实现更细粒度的控制。
<beans xmlns="http://www.springframework.org/schema/beans"
default-autowire="byType"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
<bean class="com.aop.biz.impl.BookBizImpl" name="bookBiz">bean>
<bean class="com.aop.biz.advice.MyMethodBeforeAdvice" id="methodBeforeAdvice">bean>
<bean class="com.aop.biz.advice.MyAfterReturningAdvice" id="myAfterReturningAdvice">bean>
<bean class="com.aop.biz.advice.MyMethodInterceptor" id="myMethodInterceptor">bean>
<bean class="com.aop.biz.advice.MyThrowsAdvice" id="myThrowsAdvice">bean>
<bean class="org.springframework.aop.support.RegexpMethodPointcutAdvisor" id="regexpMethodPointcutAdvisor">
<property name="advice" ref="myAfterReturningAdvice">property>
<property name="pattern" value=".*buy">property>
bean>
<bean class="org.springframework.aop.framework.ProxyFactoryBean" id="bookProxy">
<property name="target" ref="bookBiz">property>
<property name="proxyInterfaces">
<list>
<value>com.aop.biz.IBookBizvalue>
list>
property>
<property name="interceptorNames">
<list>
<value>methodBeforeAdvicevalue>
<value>regexpMethodPointcutAdvisorvalue>
<value>myMethodInterceptorvalue>
<value>myThrowsAdvicevalue>
list>
property>
bean>
beans>
aop是面向切面编程,程序是由上至下执行,但是aop而向切而编程不是,
aop的程序执行,首先当程序执行到目标对象的目标方法时,如果连接点上
由前置通知,则先执行前置通知,再执行目标方法,如果没有前置通知,则继续执行目标方法:再查看目标方法上是否由后置通知,如果有,则再执行执行后置通知代码
不管是前置通知、后置通知、环绕通知、异常通知、过滤通知,代码都是非业务核心代码,如日志、事务的管理(开启,提交、回滚)
通过本文的介绍,我们了解了Spring AOP的特点、专业术语以及不同类型的通知。Spring AOP提供了一种优雅的方式来处理横切关注点,提高了代码的可维护性和可重用性。不同类型的通知可以满足不同的需求,开发人员可以根据具体场景选择合适的通知类型。通过深入学习和应用Spring AOP,我们可以更好地设计和开发高质量的Java应用程序。