小言_互联网的博客

彻底弄懂Spring中的AOP

362人阅读  评论(0)

一、AOP简介

1、AOP基本概念

简单的说它就是把我们程序重复的代码抽取出来,在需要执行的时候,使用动态代理的技术,在不修改源码的基础上,对我们的已有方法进行增强

2、AOP的作用及优势

作用:在程序运行期间,不修改源码对已有方法进行增强。
优势:减少重复代码;提高开发效率;维护方便

3、AOP 的实现方式

使用动态代理技术

4、AOP相关术语

(1)Joinpoint(连接点)

所谓连接点是指那些被拦截到的点。在 Spring 中,这些点指的是方法,因为 Spring 只支持方法类型的连接点。

(2)Pointcut(切入点)

所谓切入点是指我们要对哪些 Joinpoint 进行拦截的定义。

注意:所有的切入点都是连接点,但是所有的连接点不一定都是切入点。

(3)Advice(通知/增强)

所谓通知是指拦截到 Joinpoint 之后所要做的事情就是通知。
通知的类型:前置通知,后置通知,异常通知,最终通知,环绕通知。

(4)Introduction(引介)

引介是一种特殊的通知在不修改类代码的前提下, Introduction 可以在运行期为类动态地添加一些方法或 Field。

(5)Target(目标对象)

代理的目标对象。

(6)Weaving(织入)

是指把增强应用到目标对象来创建新的代理对象的过程。
Spring 采用动态代理织入,而 AspectJ 采用编译期织入和类装载期织入。

(7)Proxy(代理)

一个类被 AOP 织入增强后,就产生一个结果代理类。

(8)Aspect(切面)

是切入点和通知(引介)的结合。

5、学习 Spring 中的 AOP 要明确的事

a、开发阶段(我们做的)
编写核心业务代码(开发主线):大部分程序员来做,要求熟悉业务需求。
把公用代码抽取出来,制作成通知。(开发阶段最后再做)
在配置文件中,声明切入点与通知间的关系,即切面。

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

6、关于代理的选择

在 Spring 中,框架会根据目标类是否实现了接口来决定采用哪种动态代理的方式。

二、基于XML的AOP配置

1、添加依赖

		<dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-context</artifactId>
            <version>5.0.2.RELEASE</version>
        </dependency>
        <dependency>
            <groupId>org.aspectj</groupId>
            <artifactId>aspectjweaver</artifactId>
            <version>1.9.4</version>
        </dependency>

2、IAccountService.java

public interface IAccountService {
    /**
     * 模拟保存账户
     */
    void saveAccount();

    /**
     * 模拟更新账户
     * @param i
     */
    void updateAccount(int i);

    /**
     * 模拟删除账户
     * @return
     */
    int deleteAccount();
}

3、AccountServiceImpl.java

public class AccountServiceImpl implements IAccountService {
    public void saveAccount() {
        System.out.println("执行了保存");
    }

    public void updateAccount(int i) {
        System.out.println("执行了更新" + i);
    }

    public int deleteAccount() {
        System.out.println("执行了删除");
        return 0;
    }
}

4、Logger.java

public class Logger {
    /**
     * 用于打印日志,计划让其在切入点方法执行之前执行(切入点方法即业务层方法)
     */
    public void printLog() {
        System.out.println("Logger类中的printLog方法开始记录日志了......");
    }
}

5、bean.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:aop="http://www.springframework.org/schema/aop"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
        https://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/aop
        https://www.springframework.org/schema/aop/spring-aop.xsd">

    <!--配置Spring的IoC,把accountService对象注入到容器中-->
    <bean id="accountService" class="com.uos.service.impl.AccountServiceImpl"></bean>

    <!--通知bean-->
    <bean id="logger" class="com.uos.utils.Logger"></bean>
    <aop:config>
        <!--配置切面-->
        <aop:aspect id="logAdvice" ref="logger">
            <!--配置通知的类型,并将建立通知的方法和切入点方法进行关联-->
            <aop:before method="printLog" pointcut="execution(* com.uos.service.impl.*.*(..))"></aop:before>
        </aop:aspect>
    </aop:config>
</beans>


6、AopTest.java

public class AopTest {
    public static void main(String[] args) {
        ApplicationContext applicationContext = new ClassPathXmlApplicationContext("bean.xml");
        IAccountService accountService = (IAccountService) applicationContext.getBean("accountService");
        accountService.saveAccount();
    }
}

7、运行结果


转载:https://blog.csdn.net/weixin_41842236/article/details/105990597
查看评论
* 以上用户言论只代表其个人观点,不代表本网站的观点或立场