Spring【AOP】

AOP-面向切面编程

AOP:面向切面编程,通过预编译方式和运行期动态代理实现程序功能的统一维护的一种技术。

Spring【AOP】_第1张图片

 

SpringAop中,通过Advice定义横切逻辑,并支持5种类型的Advice: 

Spring【AOP】_第2张图片

导入依赖


            org.aspectj
            aspectjweaver
            1.9.4
        

applicationContext.xml




 

Spring 实现AOP的3种方式

1、使用Spring API 

编写两个扩展功能的类Log、和AfterLog,分别将添加到旧业务的前面和后面

Log类

import org.springframework.aop.MethodBeforeAdvice;

import java.lang.reflect.Method;

public class Log implements MethodBeforeAdvice {
    //method: 要执行的目标对象的方法
    //args: 参数
    //target: 目标对象
    @Override
    public void before(Method method, Object[] args, Object target) throws Throwable {
        System.out.println(target.getClass().getName()+"的"+method.getName()+"方法被执行了");
    }


}

AfterLog类

import org.springframework.aop.AfterReturningAdvice;

import java.lang.reflect.Method;

public class AfterLog implements AfterReturningAdvice {
    @Override
    public void afterReturning(Object result, Method method, Object[] objects, Object o1) throws Throwable {
        System.out.println("执行了"+method.getName()+"方法,返回结果为"+result);
    }
}

配置spring配置文件 

    
    
    
        
        
        
        
        
    

2、自定义类实现

编写一个自定义切面类 DiyPointCut

public class DiyPointCut {
    public void before(){
        System.out.println("方法执行前");
    }
    public void after(){
        System.out.println("方法执行后");
    }
}

配置spring配置文件

 
    
    
        
        
            
            
            
        
    

3、使用注解实现AOP

编写类

import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Before;

//使用注解实现AOP 标注这个类为一个切面
@Aspect
public class AnnotationPointCut {

    @Before("execution(* com.study.service.UserServiceImpl.*(..))")
    public void before(){
        System.out.println("方法之前执行");
    }
}

编写配置文件

    
    
    
    

你可能感兴趣的:(Spring,spring,java,mysql)