1、Spring只支持方法拦截,也就是说,只能在方法的前后进行拦截,而不能在属性前后进行拦截。
2、Spring支持四种拦截类型:目标方法调用前(before),目标方法调用后(after),目标方法调用前后(around),以及目标方法抛出异常(throw)。
3、前置拦截的类必须实现MethodBeforeAdvice接口,实现其中的before方法。
4、后置拦截的类必须实现AfterReturningAdvice接口,实现其中的afterReturning方法。
5、前后拦截的类必须实现MethodInterceptor接口,实现其中的invoke方法。前后拦截是唯一可以控制目标方法是否被真正调用的拦截类型,也可以控制返回对象。而前置拦截或后置拦截不能控制,它们不能影响目标方法的调用和返回。
但是以上的拦截的问题在于,不能对于特定方法进行拦截,而只能对某个类的全部方法作拦截。所以下面引入了两个新概念:“切入点”和“引入通知”。
6、”切入点“的定义相当于更加细化地规定了哪些方法被哪些拦截器所拦截,而并非所有的方法都被所有的拦截器所拦截。在ProxyFactoryBean的属性中,interceptorNames属性的对象也由拦截(Advice)变成了引入通知(Advisor),正是在Advisor中详细定义了切入点(PointCut)和拦截(Advice)的对应关系,比如常见的基于名字的切入点匹配(NameMatchMethodPointcutAdvisor类)和基于正则表达式的切入点匹配(RegExpPointcutAdvisor类)。这些切入点都属于”静态切入点“,因为他们只在代理创建的时候被创建一次,而不是每次运行都创建。
下面我们进行实例的开发
首先创建业务接口:
package AdvisorTest;
public interface Shopping ...{
public String buySomething(String type);
public String buyAnything(String type);
public void testException();
}
下面是业务实现类,我们的通知就是以这些实现类作为切面,在业务方法前后加入我们的通知代码
package AdvisorTest;
public class ShoppingImpl implements Shopping ...{
private Customer customer;
public Customer getCustomer() ...{
return customer;
}
public void setCustomer(Customer customer) ...{
this.customer = customer;
}
public String buySomething(String type) ...{
System.out.println(this.getCustomer().getName()+" bye "+type+" success");
return null;
}
public String buyAnything(String type) ...{
System.out.println(this.getCustomer().getName()+" bye "+type+" success");
return null;
}
public void testException()...{
throw new ClassCastException();
}
}
(1)前置通知
配置了前置通知的bean,在执行业务方法前,均会执行前置拦截器的before方法
package AdvisorTest;
import java.lang.reflect.Method;
import org.springframework.aop.MethodBeforeAdvice;
//前置通知
public class WelcomeAdvice implements MethodBeforeAdvice ...{
public void before(Method method, Object[] args, Object obj)
throws Throwable ...{
String type=(String)args[0];
System.out.println("Hello welcome to bye "+type);
}
}
(2)后置通知
配置了后置通知的bean,在执行业务方法后,均会执行后置拦截器的afterReturnning方法 package AdvisorTest;
import java.lang.reflect.Method;
import org.springframework.aop.AfterReturningAdvice;
import org.springframework.aop.MethodBeforeAdvice;
//后置通知
public class ThankYouAdvice implements AfterReturningAdvice ...{
public void afterReturning(Object obj, Method method, Object[] arg1,
Object arg2) throws Throwable ...{
String type=(String)arg1[0];
System.out.println("Hello Thankyou to bye "+type);
}
}
(3)环绕通知
配置了环绕通知的bean,在执行业务方法前后,均会执行环绕拦截器的invoke方法
需要注意的是必须调用目标方法,如不调用,目标方法将不被执行
package AdvisorTest;
import org.aopalliance.intercept.MethodInterceptor;
import org.aopalliance.intercept.MethodInvocation;
public class MethodAdvisor implements MethodInterceptor ...{
public Object invoke(MethodInvocation invocation) throws Throwable ...{
String str=(String)invocation.getArguments()[0];
System.out.println("this is before"+str+" in MethodInterceptor");
Object obj=invocation.proceed(); //调用目标方法,如不调用,目标方法将不被执行
System.out.println("this is after"+str+" in MethodInterceptor");
return null;
}
}
(4)异常通知
ThrowsAdvice是一个标示接口,我们可以在类中定义一个或多个,来捕获定义异常通知的bean抛出的异常,并在抛出异常前执行相应的方法
public void afterThrowing(Throwable throwa){}或者
public void afterThrowing(Method method,Object[] args,Object target,Throwable throwable){
package AdvisorTest;
import org.springframework.aop.ThrowsAdvice;
public class ExceptionAdvisor implements ThrowsAdvice ...{
public void afterThrowing(ClassCastException e)...{
System.out.println("this is from exceptionAdvisor");
}
}
配置文件
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dtd" >
<beans>
<bean id="customer" class="AdvisorTest.Customer">
<constructor-arg index="0">
<value>gaoxiang</value>
</constructor-arg>
<constructor-arg index="1">
<value>26</value>
</constructor-arg>
</bean>
<bean id="shoppingImpl" class="AdvisorTest.ShoppingImpl">
<property name="customer">
<ref local="customer"/>
</property>
</bean>
<!-- 前置通知 -->
<bean id="welcomeAdvice" class="AdvisorTest.WelcomeAdvice"/>
<bean id="welcomeAdviceShop" class="org.springframework.aop.framework.ProxyFactoryBean">
<property name="proxyInterfaces">
<value>AdvisorTest.Shopping</value>
</property>
<property name="target">
<ref local="shoppingImpl"/>
</property>
<property name="interceptorNames">
<list>
<value>welcomeAdvice</value>
</list>
</property>
</bean>
<!-- 后置通知 -->
<bean id="thankyouAdvice" class="AdvisorTest.ThankYouAdvice"/>
<bean id="thankyouAdviceShop" class="org.springframework.aop.framework.ProxyFactoryBean">
<property name="proxyInterfaces">
<value>AdvisorTest.Shopping</value>
</property>
<property name="target">
<ref local="shoppingImpl"/>
</property>
<property name="interceptorNames">
<list>
<value>thankyouAdvice</value>
</list>
</property>
</bean>
<!-- 环绕通知 -->
<bean id="methodAdvice" class="AdvisorTest.MethodAdvisor"/>
<bean id="methodAdviceShop" class="org.springframework.aop.framework.ProxyFactoryBean">
<property name="proxyInterfaces">
<value>AdvisorTest.Shopping</value>
</property>
<property name="target">
<ref local="shoppingImpl"/>
</property>
<property name="interceptorNames">
<list>
<value>methodAdvice</value>
</list>
</property>
</bean>
<!-- 异常通知 -->
<bean id="exceptionAdvice" class="AdvisorTest.ExceptionAdvisor"/>
<bean id="exceptionAdviceShop" class="org.springframework.aop.framework.ProxyFactoryBean">
<property name="proxyInterfaces">
<value>AdvisorTest.Shopping</value>
</property>
<property name="target">
<ref local="shoppingImpl"/>
</property>
<property name="interceptorNames">
<list>
<value>exceptionAdvice</value>
</list>
</property>
</bean>
</beans>
测试代码:
package AdvisorTest;
import java.io.File;
import org.springframework.beans.factory.BeanFactory;
import org.springframework.beans.factory.xml.XmlBeanFactory;
import org.springframework.core.io.FileSystemResource;
public class TestAdvisor ...{
public static void main(String[] args) ...{
String filePath=System.getProperty("user.dir")+File.separator+"AdvisorTest"+File.separator+"hello.xml";
BeanFactory factory=new XmlBeanFactory(new FileSystemResource(filePath));
Shopping shopping=null;
System.out.println("不使用任何通知");
shopping=(Shopping)factory.getBean("shoppingImpl");
shopping.buySomething("something");
shopping.buyAnything("anything");
System.out.println("使用前置通知");
shopping=(Shopping)factory.getBean("welcomeAdviceShop");
shopping.buySomething("something");
shopping.buyAnything("anything");
System.out.println("使用后置通知");
shopping=(Shopping)factory.getBean("thankyouAdviceShop");
shopping.buySomething("something");
shopping.buyAnything("anything");
System.out.println("使用环绕通知");
shopping=(Shopping)factory.getBean("methodAdviceShop");
shopping.buySomething("something");
shopping.buyAnything("anything");
System.out.println("使用异常通知");
shopping=(Shopping)factory.getBean("exceptionAdviceShop");
shopping.testException();
}
}
运行结果一目了然:
不使用任何通知
gaoxiang bye something success
gaoxiang bye anything success
使用前置通知
Hello welcome to bye something
gaoxiang bye something success
Hello welcome to bye anything
gaoxiang bye anything success
使用后置通知
gaoxiang bye something success
Hello Thankyou to bye something
gaoxiang bye anything success
Hello Thankyou to bye anything
使用环绕通知
this is beforesomething in MethodInterceptor
gaoxiang bye something success
this is aftersomething in MethodInterceptor
this is beforeanything in MethodInterceptor
gaoxiang bye anything success
this is afteranything in MethodInterceptor
使用异常通知
this is from exceptionAdvisor
相关推荐
Spring_AOP四种创建通知(拦截器)类型,介绍的比较详细,有实例
标题中的“在自定义Spring AOP中使用EL获取拦截方法的变量值”指的是在Spring的面向切面编程(AOP)中,通过Expression Language(EL,表达式语言)来访问被拦截方法的局部变量值。这通常涉及到Spring的代理机制、...
在Spring Boot应用中,Spring AOP(面向切面编程)是一种强大的工具,它允许我们创建横切关注点,如日志记录、权限检查等,这些关注点可以被编织到应用程序的多个点上,而无需侵入核心业务逻辑。在本案例中,我们将...
例如,可能会有一个自定义的MyBatis拦截器用于分页查询,一个Spring AOP切面用于记录操作日志,Spring事务管理确保数据的一致性,而反射工具类可能用于动态加载配置或处理某些通用的反射任务。通过这些组件的组合,...
具体到Spring AOP拦截器的代码实现,本文通过创建TestInterceptor类来演示。这个类继承自HandlerInterceptorAdapter,然后重写其中的afterCompletion、postHandle等方法。在这个类中,可以在相应方法中添加自定义的...
总的来说,Spring AOP通过这四个关键的Jar包,结合AspectJ的强大功能和CGLIB的代理机制,为开发者提供了强大的面向切面编程支持,使得我们可以在不侵入原有业务代码的情况下,实现跨切面的关注点管理。
通过对这个简单的AOP拦截器实现的学习,我们可以进一步探索如何结合注解驱动的AOP、环绕通知(`Around Advice`)、代理模式的实现细节、以及如何在实际项目中利用AOP解决实际问题。AOP是Spring框架的强大工具,理解...
在提供的压缩包中,可能包含了一个或多个测试类(Tests),这些测试类通常用来验证AOP拦截器的功能。它们可能包含模拟业务场景的方法,这些方法会被切面拦截并执行相应的通知。通过运行这些测试,我们可以确保AOP...
接下来,描述中提到了"MethodInterceptor",这是Spring AOP中的一种拦截器,用于拦截并修改代理对象的方法调用。不同于HandlerInterceptor,MethodInterceptor是基于代理的AOP,适用于拦截任何由Spring管理的对象,...
总的来说,Spring AOP 拦截器 Advisor 是一种强大的工具,它允许我们在不修改目标代码的情况下插入额外的行为。通过合理地定义 Advice 和 Pointcut,我们可以实现灵活的横切关注点,如日志、性能监控、事务管理和...
在Spring中,拦截器通常与通知概念一起使用,形成一个拦截器链,每个拦截器都可以在调用前后进行操作,且可以决定是否继续调用下一个拦截器或中断调用。 总之,Spring AOP通过面向切面编程提供了优雅的解决方案,将...
在本项目中,我们将探讨如何通过配置文件实现Spring AOP,包括前置通知、后置通知以及拦截器的运用。 首先,我们需要理解Spring AOP的核心概念。切面(Aspect)是关注点的模块化,这些关注点定义了跨越多个对象的...
即使你没有直接使用AspectJ语法编写切面,Spring的AOP代理也可以利用这个库进行代理对象的创建,以实现方法调用前后的通知(advises)。这个库对于那些希望在不改变源代码的情况下,通过AOP增强已有类的行为的开发者...
在Spring中,我们可以使用`@Aspect`注解来定义一个切面,这个切面包含了多个通知(advice),即拦截器。例如: ```java @Aspect @Component public class LoggingAspect { @Before("execution(* ...
- **Interceptor(拦截器)**:一个实现了特定接口的类,用来包装目标方法并执行额外的动作。 - **Proxy(代理)**:在目标对象和执行动作之间创建的一个对象,用于实现AOP功能。 2. AOP的不同类型的通知 - **...
Spring AOP使用拦截器(Interceptor)机制来实现通知,拦截器按照顺序形成一个链,当目标方法被调用时,会逐个执行这些拦截器。这种设计使得我们可以灵活地插入、移除和重新排列通知,而不会影响核心业务代码。 ...
Spring AOP和其他AOP框架(如AspectJ)都实现了这些接口,以实现方法拦截和通知机制。 2. aspectjweaver-1.7.0.jar:这是AspectJ的织入器,负责在运行时动态地将切面(aspect)织入到目标类中。AspectJ提供了一种...
在Spring AOP中,我们通过定义一个实现了`org.springframework.aop.MethodInterceptor`接口的类来创建自定义拦截器。这个类需要实现`invoke`方法,该方法会在目标方法被调用之前和之后执行。 接下来,我们需要将...
7. **组合模式(Composite)**:在Spring AOP中,虽然没有直接的组合模式实现示例,但组合模式的思想体现在能够将多个拦截器(Interceptor)组合成一个链,每个拦截器都可以看作是树结构中的一个节点,共同完成一个...