spring学习14(AOP面向切面编程)

    1. 要使用aop编程所需要的jar:
      aspectjrt.jar
      aspectjweaver.jar
      commons-logging-1.2.jar
      spring-aop-4.3.9.RELEASE.jar
      spring-aspects-4.3.9.RELEASE.jar
      spring-beans-4.3.9.RELEASE.jar
      spring-context-4.3.9.RELEASE.jar
      spring-core-4.3.9.RELEASE.jar
      spring-expression-4.3.9.RELEASE.jar
  • 2.在配置文件加入aop命名空间

  • 3 把切面加入ioc容器 使用@Component 注解加入spring容器 使用@Aspect标识为切面

  • 4 在切面类中声明通知如 @Before

  • 5 访问到方法细节在通知方法加入参数JoinPoint

注解方式:

模拟计算器 在加减乘除打印日志

定义一个计算器接口

package chen.spring.aop;
public interface calculate {
    int add(int i, int j);
    int sub(int i, int j);
    int mul(int i, int j);
    int div(int i, int j);
}

计算器实现类并注解方式配置为bean

package chen.spring.aop;

import org.springframework.stereotype.Component;

@Component
public class JiShuanQi implements calculate{
    @Override
    public int add(int i, int j) {
        int r=i+j;
        System.out.println( r);
        return r;
    }

    @Override
    public int sub(int i, int j) {
        int r=i-j;
        System.out.println( r);
        return r;
    }

    @Override
    public int mul(int i, int j) {
        int r=i*j;
        System.out.println( r);
        return r;
    }

    @Override
    public int div(int i, int j) {
        int r=i/j;
        System.out.println( r);
        return r;
    }
}

切面类:

package chen.spring.aop;

import java.util.Arrays;

import java.util.List;

import org.aspectj.lang.JoinPoint;
import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.After;
import org.aspectj.lang.annotation.AfterReturning;
import org.aspectj.lang.annotation.AfterThrowing;
import org.aspectj.lang.annotation.Around;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Before;
import org.aspectj.lang.annotation.Pointcut;
import org.springframework.core.annotation.Order;
import org.springframework.stereotype.Component;


//使用@Order注解指定切面右下角 越小优先级越高
@Order(1)
@Aspect
@Component
public class LogAspect {
    //定义一个方法,用于声明切入点表达式,一般这个方法不需要其他代码
    //使用@Pointcut来声明切入点
    //后面的其他通知就可以直接使用方法名来引用当前的切入点表达式
    @Pointcut("execution(public int chen.spring.aop.calculate.*(int, int))")
    public void pointcut() {}
    
    
    //声明前置前置通知:在目标方法之前
//  @Before("execution(public int chen.spring.aop.calculate.*(int, int))")
    @Before("pointcut()")//使用了切入点声明
    public void beforeLog(JoinPoint jPoint) {
        String name=jPoint.getSignature().getName();//获取方法name
        List args=Arrays.asList(jPoint.getArgs());//获取参数
        System.out.println("前置通知 方法"+name +"参数"+args);
        
    }
    
    //后置通知:在目标方法执行后(无论发生错误)
    //在后置通知中还不能访问目标方法的结果
    @After("execution(public int chen.spring.aop.calculate.*(int, int))")
    public void afterLog(JoinPoint jPoint) {
        String name=jPoint.getSignature().getName();//获取方法name
        List args=Arrays.asList(jPoint.getArgs());//获取参数
        System.out.println("后置通知 方法"+name +"参数"+args);
    }
    
    //返回通知:在方法正确执行后执行的代码
    //可以访问返回值
    @AfterReturning(value="execution(public int chen.spring.aop.calculate.*(int, int))",
            returning="result")
    public void afterReturningLog(JoinPoint jPoint,Object result) {
        String name=jPoint.getSignature().getName();//获取方法name
        List args=Arrays.asList(jPoint.getArgs());//获取参数
        System.out.println("返回通知 方法"+name +" 参数="+args+" 返回值="+result);
        
    }
    //异常通知:在方法异常后执行的代码
    //可以指定特定异常才执行
    @AfterThrowing(value="execution(public int chen.spring.aop.calculate.*(int, int))",
            throwing="ex")
    public void afterThrowingLog(JoinPoint jPoint,Exception ex) {
        String name=jPoint.getSignature().getName();//获取方法name
        System.out.println("返回通知 方法"+name +" 返回值="+ex);
    }
    
    //环绕通知:需要ProceedingJoinPoint类型的参数
    //环绕通知类似于动态代理的全程:ProceedingJoinPoint类型的参数可以决定是否执行目标方法
    //且环绕通知必须有返回值,返回值即为目标方法的返回值
    @Around("execution(public int chen.spring.aop.calculate.*(int, int))")
    public Object aroundLog(ProceedingJoinPoint point) {
        String name=point.getSignature().getName();
        System.out.println("环绕通知 方法"+name);
        Object r=null;
        try {
            //前置通知
            r=point.proceed();//执行目标方法
            //返回通知
        } catch (Throwable e) {
            //异常通知
            e.printStackTrace();
        }
            //后置通知
        return r;
    }
}


    //1 需要的jar

    /**
    aspectjrt.jar
    aspectjweaver.jar
    commons-logging-1.2.jar
    spring-aop-4.3.9.RELEASE.jar
    spring-aspects-4.3.9.RELEASE.jar
    spring-beans-4.3.9.RELEASE.jar
    spring-context-4.3.9.RELEASE.jar
    spring-core-4.3.9.RELEASE.jar
    spring-expression-4.3.9.RELEASE.jar
     * */
    
    //2 在配置文件加入aop命名空间
    
    //3 把切面加入ioc容器 使用@Component  标识为切面使用@Aspect
    
    //4 在切面类中声明通知如 @Before
    
    //5 访问到方法细节在通知方法加入参数JoinPoint
 
 

配置文件 :









  • 必须启动注解配置
通知:
  • 前置通知:在目标方法之前 使用 @Before(execution(方法的全签名))可以使用通配符
    //声明前置前置通知:在目标方法之前
    @Before("execution(public int chen.spring.aop.calculate.*(int, int))")
    public void beforeLog(JoinPoint jPoint) {
        String name=jPoint.getSignature().getName();//获取方法name
        List args=Arrays.asList(jPoint.getArgs());//获取参数
        System.out.println("前置通知 方法"+name +"参数"+args);
        
    }
 
 
  • 后置通知:在目标方法执行后(无论发生错误)并且 后置通知中还不能访问目标方法的结果
//后置通知:在目标方法执行后(无论发生错误)
    //在后置通知中还不能访问目标方法的结果
    @After("execution(public int chen.spring.aop.calculate.*(int, int))")
    public void afterLog(JoinPoint jPoint) {
        String name=jPoint.getSignature().getName();//获取方法name
        List args=Arrays.asList(jPoint.getArgs());//获取参数
        System.out.println("后置通知 方法"+name +"参数"+args);
    }
 
 
  • 返回通知:在方法正确执行后执行的代码 并且可以访问返回值
//返回通知:在方法正确执行后执行的代码
    //可以访问返回值
    @AfterReturning(value="execution(public int chen.spring.aop.calculate.*(int, int))",
            returning="result")
    public void afterReturningLog(JoinPoint jPoint,Object result) {
        String name=jPoint.getSignature().getName();//获取方法name
        List args=Arrays.asList(jPoint.getArgs());//获取参数
        System.out.println("返回通知 方法"+name +" 参数="+args+" 返回值="+result);
        
    }
 
 
  • 异常通知:在方法异常后执行的代码 可以指定特定异常才执行
    //异常通知:在方法异常后执行的代码
    //可以指定特定异常才执行
    @AfterThrowing(value="execution(public int chen.spring.aop.calculate.*(int, int))",
            throwing="ex")
    public void afterThrowingLog(JoinPoint jPoint,Exception ex) {
        String name=jPoint.getSignature().getName();//获取方法name
        System.out.println("返回通知 方法"+name +" 返回值="+ex);
    }
  • 环绕通知 环绕通知:需要ProceedingJoinPoint类型的参数 环绕通知类似于动态代理的全程:ProceedingJoinPoint类型的参数可以决定是否执行目标方法 且环绕通知必须有返回值,返回值即为目标方法的返回值
//环绕通知:需要ProceedingJoinPoint类型的参数
    //环绕通知类似于动态代理的全程:ProceedingJoinPoint类型的参数可以决定是否执行目标方法
    //且环绕通知必须有返回值,返回值即为目标方法的返回值
    @Around("execution(public int chen.spring.aop.calculate.*(int, int))")
    public Object aroundLog(ProceedingJoinPoint point) {
        String name=point.getSignature().getName();
        System.out.println("环绕通知 方法"+name);
        Object r=null;
        try {
            //前置通知
            r=point.proceed();//执行目标方法
            //返回通知
        } catch (Throwable e) {
            //异常通知
            e.printStackTrace();
        }
            //后置通知
        return r;
    }
  • 定义一个方法,用于声明切入点表达式,一般这个方法不需要其他代码 使用@Pointcut来声明切入点 后面的其他通知就可以直接使用方法名来引用当前的切入点表达式
//定义一个方法,用于声明切入点表达式,一般这个方法不需要其他代码
    //使用@Pointcut来声明切入点
    //后面的其他通知就可以直接使用方法名来引用当前的切入点表达式
    @Pointcut("execution(public int chen.spring.aop.calculate.*(int, int))")
    public void pointcut() {}

    //声明前置前置通知:在目标方法之前
    @Before("pointcut()")//使用了切入点声明
    public void beforeLog(JoinPoint jPoint) {
        String name=jPoint.getSignature().getName();//获取方法name
        List args=Arrays.asList(jPoint.getArgs());//获取参数
        System.out.println("前置通知 方法"+name +"参数"+args);
        
    }

 
 

配置文件方式:



    
    
    
    
    
    
        
        
        
        
            
            
            
        
    


  • 1.配置bean
  • 2.配置切面bean
  • 3.配置AOP
    1)配置切点表达式 切点
    2)配置切面 关联切面bean
    3)在切面配置中 配置切面通知 以及通知对应的方法

总结:

  • 切面类要加入spring容器 并使用@Aspect标识 spring就可以自动识别装配

  • 当目标类方法拥有多个切面时可以在 切面类使用@Order(数值)注解 数值越小优先级越高 (切面优先级)

  • 切面原理 动态代理

  • 各个通知可以有相应的参数 也可以获取相应的数据

  • 切点:需要介入的目标方法 切面:处理对应的类 通知:介入目标方法 的介入方法

你可能感兴趣的:(spring学习14(AOP面向切面编程))