【Spring笔记】八、Spring—AOP

1、简介

1.1 概述

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

AOP是OOP的延续,是Spring框架中的一个重要内容,是函数式编程的一种衍生泛型。利用AOp可以对业务逻辑的各个部分进行隔离,从而使得业务逻辑各部分之间的耦合度降低,提高程序的可重用性,同时提高了开发的效率

1.2 AOP的作用及其优势

作用:在程序运行期间,在不修改源码的情况下对方法进行功能增强

优势:减少重复代码,提高开发效率,便于维护

1.3 AOP底层实现

AOP的底层是通过Spring提供的动态代理技术实现的,在运行期间,Spring通过动态代理技术动态生成代理对象,代理对象方法执行时进行增强功能的介入,再去调用目标对象的方法,从而完成功能的增强

1.4 AOP动态代理技术

  • JDK代理:基于接口的动态代理技术

  • cglib代理:基于父类的动态代理技术

1.5 JDK动态代理

目标接口

public interface TargetInterface {
    void save();
}

目标类

public class Target implements TargetInterface{
    public void save(){
        System.out.println("save running.....");
    }
}

增强类

public class Advice {
    public void before(){
        System.out.println("前置增强");
    }

    public void after(){
        System.out.println("后置增强");
    }
}

测试方法

    public static void main(String[] args) {
        //目标对象
        final Target target = new Target();
        //增强对象
        final Advice advice = new Advice();
        // 返回值 就是动态代理生成的代理对象
        TargetInterface proxy = (TargetInterface) Proxy.newProxyInstance(
                target.getClass().getClassLoader(), //目标对象类加载器
                target.getClass().getInterfaces(),// 目标对象相同的接口字节码对象数组
                new InvocationHandler() {
//                  调用代理对象的任何方法,实质执行的都是invoke方法
                    @Override
                    public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
                        advice.before();//前置方法
                        Object invoke = method.invoke(target, args);//  执行目标方法
                        advice.after();//后置方法
                        return invoke;
                    }
                }
        );

        //调用代理对象的方法
        proxy.save();
		//前置增强
		//save running.....
		//后置增强
    }

1.6 cglib动态代理

测试方法

public static void main(String[] args) {
    //目标对象
    final Target target = new Target();
    //增强对象
    final Advice advice = new Advice();
    // 返回值 就是动态代理生成的代理对象  基于cglib
    //1、创建增强器
    Enhancer enhancer = new Enhancer();
    //2、设置父类(目标)
    enhancer.setSuperclass(Target.class);
    //3、设置回调
    enhancer.setCallback(new MethodInterceptor() {
        @Override
        public Object intercept(Object proxy, Method method, Object[] args, MethodProxy methodProxy) throws Throwable {
            advice.before();//执行前置
            method.invoke(target,args);//执行目标
            advice.after();//执行后置
            return null;
        }
    });
    //4、创建代理对象
    Target proxy  = (Target) enhancer.create();
    //调用代理对象的方法
    proxy.save();
}

1.7 AOP相关术语

Spring的AOP实现底层就是对上面的动态代理代码进行了封装,封装后只需要对关注的部分进行代码编写,并通过配置的方式完成指定目标的方法增强

AOP常用术语

  • Target(目标对象):代理的目标对象
  • Proxy(代理):一个类被AOP织入增强后,就产生一个结果代理类
  • Joinpoint(连接点):指那些被拦截到的点,在Spring中,这些点指的是方法,因为Spring只支持方法类型的连接点——可以被增强的目标对象的方法
  • Pointcut(切入点):指要对哪些Joinpoint进行拦截的定义
  • Advice(通知/增强):指拦截到JoinPoint之后所要做的操作
  • Aspect(切面):是切入点Pointcut和通知Advice的结合
  • Weaving(织入):把增强应用到目标对象来创建新的代理对象的过程。Spring采用动态代理织入,而AspectJ采用编译器织入和类装载期织入

1.8 AOP开发注意事项

1、需要编写的内容
  • 编写核心业务代码(目标类的目标方法)——切入点
  • 编写切面类,切面类中有通知(增强功能方法)
  • 配置文件中,配置织入关系,即哪些通知与哪些连接点进行结合
2、AOP技术实现的内容

Spring框架监控切点Pointcut方法的执行,当监控到切点方法被运行,使用代理机制,动态创建目标对象的代理对象,根据通知类别,在代理对象的对应位置,将通知Advice对应的功能织入,完成完整的代码逻辑运行

3、AOP底层代理方式

Spring会根据目标类是否实现接口来决定采用jdk还是cglib方式的动态代理

2、基于XML的AOP开发

2.1 快速入门

  1. 导入AOP相关依赖
  2. 创建目标接口和目标类(内部有切点)
  3. 创建切面类(内部有增强方法)
  4. 将目标类和切面类的对象创建全交给Spring
  5. 在applicationContext.xml中配置织入关系
  6. 测试代码

1、

<dependency>
  <groupId>org.aspectj</groupId>
  <artifactId>aspectjweaver</artifactId>
  <version>1.8.4</version>
</dependency>

2、

public interface TargetInterface {
    void save();
}

3、

public class MyAspect {
    public void before(){
        System.out.println("前置增强。。。。");
    }
    public void after(){
        System.out.println("后置增强。。。。");
    }
}

4、5

<!--  目标对象  -->
    <bean id="target" class="com.heima.aop.Target"/>
<!--  切面对象  -->
    <bean id="myAspect" class="com.heima.aop.MyAspect"/>
<!--配置织入:告诉Spring哪些方法(切点)需要进行哪些增强(前置、后置...)-->
    <aop:config>
        <!--声明切面-->
        <aop:aspect ref="myAspect">
            <!--切面:切点+通知-->
            <aop:before method="before" pointcut="execution(public void com.heima.aop.Target.save())"/>
            <aop:after method="after" pointcut="execution(public void com.heima.aop.Target.save())"/>
        </aop:aspect>
    </aop:config>

6、

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration("classpath:applicationContext.xml")
public class AopTest {
    @Autowired
    private TargetInterface target;

    @Test
    public void test1(){
        target.save();
    }
}

2.2 切点表达式

表达式语法:

execution( [修饰符] 返回值类型 包名.类名.方法名(参数))

  • 修饰符可以省略
  • 返回值类型、包名、类名、方法名可以使用星号* 代表任意
  • 包名与类名之间一个点. 代表当前包下的类,两个点… 代表当前包及其子包下的类
  • 参数列表可以使用两个点… 表示任意个数,任意类型的参数列表

例如

<aop:before method="before" pointcut="execution(void com.heima.aop.*.*(..))"/>

表示返回值为void的com.heima.aop包下的任意类的任意参数的任意方法,声明为切点

2.3 通知的类型

通知的配置与法:

<aop:通知类型 method="切面类中的方法名" pointcut="切点表达式"/>

切面对象

public class MyAspect {
    public void before(){
        System.out.println("前置增强。。。。");
    }
    public void afterReturning(){
        System.out.println("后置增强。。。。");
    }
    public Object around(ProceedingJoinPoint pjp) throws Throwable {
        System.out.println("环绕前增强。。。");
        Object proceed = pjp.proceed(); //切点方法
        System.out.println("环绕后增强。。。");
        return proceed;
    }
    public void afterThrowing(){
        System.out.println("异常抛出增强。。。");
    }

    public void after(){
        System.out.println("最终增强。。。");
    }
}

Spring配置文件

<!--  目标对象  -->
    <bean id="target" class="com.heima.aop.Target"/>
<!--  切面对象  -->
    <bean id="myAspect" class="com.heima.aop.MyAspect"/>
<!--配置织入:告诉Spring哪些方法(切点)需要进行哪些增强(前置、后置...)-->
    <aop:config>
        <!--声明切面-->
        <aop:aspect ref="myAspect">
            <!--切面:切点+通知-->
            <aop:before method="before" pointcut="execution(void com.heima.aop.*.*(..))"/>
            <aop:after-returning method="afterReturning" pointcut="execution(void com.heima.aop.*.*(..))"/>
            <aop:around method="around" pointcut="execution(void com.heima.aop.*.*(..))"/>
            <aop:after-throwing method="afterThrowing" pointcut="execution(void com.heima.aop.*.*(..))"/>
            <aop:after method="after" pointcut="execution(void com.heima.aop.*.*(..))"/>
        </aop:aspect>
    </aop:config>

2.4 抽取切点表达式

当多个增强的切点表达式相同时,可以将其进行抽取,在增强中使用pointcut-ref属性代替pointcut属性来代替抽取后的切点表达式

<!--  目标对象  -->
    <bean id="target" class="com.heima.aop.Target"/>
<!--  切面对象  -->
    <bean id="myAspect" class="com.heima.aop.MyAspect"/>
<!--配置织入:告诉Spring哪些方法(切点)需要进行哪些增强(前置、后置...)-->
    <aop:config>
        <!--声明切面-->
        <aop:aspect ref="myAspect">
            <!--抽取切点表达式-->
            <aop:pointcut id="myPointcut" expression="execution(* com.heima.aop.*.*(..))"/>
            <!--切面:切点+通知-->
            <aop:before method="before" pointcut-ref="myPointcut"/>
            <aop:after-returning method="afterReturning" pointcut-ref="myPointcut"/>
            <aop:around method="around" pointcut-ref="myPointcut"/>
            <aop:after-throwing method="afterThrowing" pointcut-ref="myPointcut"/>
            <aop:after method="after" pointcut-ref="myPointcut"/>
        </aop:aspect>
    </aop:config>

2.5 知识要点

  • aop织入配置

  • 通知类型:前置、后置、环绕、异常抛出、最终

  • 切点表达式写法:execution( [修饰符] 返回值类型 包名.类名.方法名(参数))

    常见表达式:

    execution(* com.heima.aop.*.*(..))
    

3、基于注解的AOP开发

3.1 快速入门

  1. 创建目标接口和目标类(内部有切点)
  2. 创建切面类(内部有增强方法)
  3. 将目标类和切面类的对象创建权交给Spring
  4. 在切面类中使用注解配置织入关系
  5. 在配置文件中开启组件扫描和AOP的自动代理
  6. 测试

1、创建目标接口和目标类(内部有切点)

目标接口

public interface TargetInterface {
    void save();
}

目标类

@Component("target")
public class Target implements TargetInterface {
    public void save(){
        System.out.println("save running.....");
    }
}

2、创建切面类(内部有增强方法)

@Component("myAspect")
@Aspect //标注当前MyAspect是一个切面类
public class MyAspect {
//    配置前置通知
    @Before("execution(* com.heima.anno.*.*(..))")
    public void before(){
        System.out.println("前置增强。。。。");
    }
    public void afterReturning(){
        System.out.println("后置增强。。。。");
    }
    public Object around(ProceedingJoinPoint pjp) throws Throwable {
        System.out.println("环绕前增强。。。");
        Object proceed = pjp.proceed(); //切点方法
        System.out.println("环绕后增强。。。");
        return proceed;
    }
    public void afterThrowing(){
        System.out.println("异常抛出增强。。。");
    }

    public void after(){
        System.out.println("最终增强。。。");
    }
}

3、将目标类和切面类的对象创建权交给Spring

给目标类和切面类加上@Component注解

4、在切面类中使用注解配置织入关系

给切面类加上@Aspect注解,标明这是一个切面类,在里面的增强方法配置@Before( )、@AfterReturning( )等通知类型,括号内填切点表达式

5、在配置文件中开启组件扫描和AOP的自动代理

applicationContext-anno.xml

<!--  组件扫描  -->
    <context:component-scan base-package="com.heima.anno"/>
<!--  aop自动代理  -->
    <aop:aspectj-autoproxy/>

6、测试

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration("classpath:applicationContext-anno.xml")
public class AnnoTest {
    @Autowired
    private TargetInterface target;

    @Test
    public void test1(){
        target.save();
    }
}

3.2 注解配置AOP详解

1、注解通知的类型

通知的配置语法:@通知注解(“切点表达式”)

2、切点表达式的抽取

同xml配置aop一样,可以将切点表达式抽取。在切面类内定义方法,在该方法上使用@Pointcut注解定义切点表达式,然后再在增强注解中进行引用

//    定义切点表达式
    @Pointcut("execution(* com.heima.anno.*.*(..))")
    public void pointcut(){}

抽取后切点表达式的切面类

@Component("myAspect")
@Aspect //标注当前MyAspect是一个切面类
public class MyAspect {
//    配置前置通知
    @Before("execution(* com.heima.anno.*.*(..))")
    public void before(){
        System.out.println("前置增强。。。。");
    }
    @AfterReturning("pointcut()")
    public void afterReturning(){
        System.out.println("后置增强。。。。");
    }
    @Around("pointcut()")
    public Object around(ProceedingJoinPoint pjp) throws Throwable {
        System.out.println("环绕前增强。。。");
        Object proceed = pjp.proceed(); //切点方法
        System.out.println("环绕后增强。。。");
        return proceed;
    }
    @AfterThrowing("pointcut()")
    public void afterThrowing(){
        System.out.println("异常抛出增强。。。");
    }
    @After("MyAspect.pointcut()")
    public void after(){
        System.out.println("最终增强。。。");
    }

//    定义切点表达式
    @Pointcut("execution(* com.heima.anno.*.*(..))")
    public void pointcut(){}
}

如需更多知识点请前往我的Spring学习笔记专栏

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值