当前位置:   article > 正文

Spring中的面向切面(AOP)_spring 中 实现invoke(object proxy, method method, obj

spring 中 实现invoke(object proxy, method method, object[] args) 方法

 AOP解决的问题:把横切关注点与业务逻辑相分离,即可以实现横切关注点与他们所影响的对象之间的解耦。

什么是横切关注点呢?它可以被描述为影响应用多个地方的功能。亦或者理解为辅助功能。比如日志、安全、缓存和事务管理。

1、看一下AOP的术语:

String切面可以应用5种类型的通知:前置通知,后置通知,返回通知,异常通知,环绕通知。定义了切面的什么、何时

  1. //前置通知
  2. public void before(){
  3. System.out.println("这是前置通知!!");
  4. }
  5. //后置通知
  6. public void afterReturning(){
  7. System.out.println("这是后置通知(如果出现异常不会调用)!!");
  8. }
  9. //环绕通知
  10. public Object around(ProceedingJoinPoint pjp) throws Throwable {
  11. System.out.println("这是环绕通知之前的部分!!");
  12. Object proceed = pjp.proceed();//调用目标方法
  13. System.out.println("这是环绕通知之后的部分!!");
  14. return proceed;
  15. }
  16. //异常通知
  17. public void afterException(){
  18. System.out.println("出事啦!出现异常了!!");
  19. }
  20. //后置通知
  21. public void after(){
  22. System.out.println("这是后置通知(出现异常也会调用)!!");
  23. }

连接点:切面代码可以利用这些点插入到应用的正常流程之中,并添加新的行为。定义了切面的“何处”。

切点:有助于缩小切面通知的连接点的范围。

切面:通知和切点的结合。通知和切点定义了切面的全部内容

引入:向现有的类添加新的方法和属性。

织入:把切面应用到目标对象并创建新的代理对象的过程。在目标对象的生命周期里有多个点可以进行织入:编译期、类加载期、运行 期。

2、Spring提供的4种类型的AOP支持:

  1. 基于代理的经典SpringAOP
  2. 纯POJO切面
  3. @AspectJ注解驱动的切面
  4. 注入式AspectJ切面

基于代理的经典SpringAOP,但是显得非常笨重和复杂。

动态代理:代理的对象必须要实现接口

 

只能对实现了接口的类生成代理,而不是针对类,该目标类型实现的接口都将被代理。原理是通过在运行期间创建一个接口的实现类来完成对目标对象的代理。步骤如下:

1. 定义一个实现接口InvocationHandler的类
2. 通过构造函数,注入被代理类
3. 实现invoke( Object proxy, Method method, Object[] args)方法
4. 在主函数中获得被代理类的类加载器
5. 使用Proxy.newProxyInstance( )产生一个代理对象
6. 通过代理对象调用各种方法

  1. public class UserServiceProxyFactory implements InvocationHandler{
  2.     //使用构造方法必须把us传进来
  3.     public UserServiceProxyFactory(UserService us) {
  4.         super();
  5.         this.us = us;
  6.     }
  7.     private UserService us;
  8.     public UserService getUserServiceProxy() {
  9.         //生成动态接口代理
  10.         UserService usProxy = (UserService) Proxy.newProxyInstance(UserServiceProxyFactory.class.getClassLoader(),
  11.                 UserServiceImpl.class.getInterfaces(), this);
  12.         return usProxy;
  13.     }
  14.     @Override
  15.     public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
  16.         System.out.println("打开事务");
  17.         Object invoke = method.invoke(us, args);
  18.         System.out.println("提交事务");
  19.         return invoke;
  20.     }
  21. }
  22. @Test
  23.     public void fun1() {
  24.             UserService us = new UserServiceImpl();
  25.             UserServiceProxyFactory factory = new UserServiceProxyFactory(us);
  26.             UserService userServiceProxy = factory.getUserServiceProxy();
  27.             userServiceProxy.delete();
  28.     }

CGLib代理: 实现原理通过继承目标对象来达到代理的目的,被final修饰的类不能够被代理。

  1. public class UserServiceProxyFactory2 implements MethodInterceptor{
  2.     public UserService getUserServiceProxy() {
  3.         Enhancer en = new Enhancer();sCVZCZ
  4.         en.setSuperclass(UserServiceImpl.class);
  5.         en.setCallback(this);
  6.         UserService us = (UserService) en.create();
  7.         return us;
  8.     }
  9.     @Override
  10.     public Object intercept(Object proxyobj, Method menhtod, Object[] arg2, MethodProxy methodProxy) throws Throwable {
  11.         // 打开事务
  12.         System.out.println("打开事务");
  13.         // 调用原有方法
  14.         Object invokeSuper = methodProxy.invokeSuper(proxyobj, arg2);
  15.         // 提交事务
  16.         System.out.println("提交事务");
  17.         return invokeSuper;
  18.     }    
  19. }
  20.     @Test
  21.     public void fun2() {
  22.         UserService us = new UserServiceImpl();
  23.         UserServiceProxyFactory2 factory = new UserServiceProxyFactory2();
  24.         UserService userServiceProxy = factory.getUserServiceProxy();
  25.         userServiceProxy.delete();
  26.     }

编写切点:execution 是Spring中使用最主要的AspectJ指示器。可以使用within联用&&、||、!符号来限制匹配。

使用AspectJ切点表达式选择执行的方法,<aop:pointcut expression="execution(* Lamb_quan.service.*ServiceImpl.*(..))" id="shu"/>

在切点中选择bean: execution(* Lamb_quan.service.*ServiceImpl.*(..)) and bean(liuyifei)

                                execution(* Lamb_quan.service.*ServiceImpl.*(..)) and !bean(liuyifei)

定义切面:@Aspect注解的类不仅仅是一个普通的POJO,还是一个切面。@Pointcut注解能够在一个@Aspect切面内定义可重用的切点。

Spring使用AspectJ注解来声明通知方法:@After @AfterReturning @AfterThrowing  @Around @Before

@Pointcut注解声明频繁使用切点表达式

@Aspect

public class Audience{

@Pointcut("execution(* Lamb_quan.service.perform(..))")

public void performance () {}  //扩展切点表达式语言

@Before("performance () ")

public viod  otherMethod  () {}

}

创建环绕通知:

@Aspect

public class Audience{

@Pointcut("execution(* Lamb_quan.service.perform(..))")

public void performance () {}  //扩展切点表达式语言

@Around("performance () ")

public viod  otherMethod  (ProceedingJiontPoint jp) {

      try{ 前置通知   jp.proceed(); 后置通知}catch(Throwable e){ 异常通知}

   }

}

处理通知中的参数execution(* Lamb_quan.service.perform(int)) &&args(指定参数)

通过注解引入新功能:@DeclareParents注解

3、在XML中声明切面

  1. <!-- 准备工作: 导入aop(约束)命名空间 -->
  2. <!-- 1.配置目标对象 -->
  3. <bean name="userService" class="xxx.service.UserServiceImpl" ></bean>
  4. <!-- 2.配置通知对象 -->
  5. <bean name="myAdvice" class="xxx.d_springaop.MyAdvice" ></bean>
  6. <!-- 3.配置将通知织入目标对象 -->
  7. <aop:config>
  8. <!-- 配置切入点
  9. public void xxx.service.UserServiceImpl.save()
  10. -->
  11. <aop:pointcut expression="execution(* xxx.service.*ServiceImpl.*(..))" id="pc"/>
  12. <aop:aspect ref="myAdvice" >
  13. <!-- 指定名为before方法作为前置通知 -->
  14. <aop:before method="before" pointcut-ref="pc" />
  15. <!-- 后置 -->
  16. <aop:after-returning method="afterReturning" pointcut-ref="pc" />
  17. <!-- 环绕通知 -->
  18. <aop:around method="around" pointcut-ref="pc" />
  19. <!-- 异常拦截通知 -->
  20. <aop:after-throwing method="afterException" pointcut-ref="pc"/>
  21. <!-- 后置 -->
  22. <aop:after method="after" pointcut-ref="pc"/>
  23. </aop:aspect>
  24. </aop:config>

为切面传递参数、通过切面引入新的功能。

4、Spring注入AspectJ切面(功能更加强大)

 

 

 

 

 

 

 

 

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/225409
推荐阅读
相关标签
  

闽ICP备14008679号