• Spring框架之AOP


    目录

    一、AOP的简介

            1.1 对aop的理解?

            1.2 aop能解决的问题?

            1.3 aop的关键概念名词?

    二、通知代码的分类

            2.1 前置通知

            2.2 后置通知

            2.3 环绕通知

            2.4 异常通知

            2.5 过滤通知(适配器)


    一、AOP的简介

            1.1 对aop的理解?

        AOP是一种面向切面编程,可以完成一些非核心业务的功能。

            1.2 aop能解决的问题?

    不需要在原有的业务逻辑中添加任何代码,就可以实现共性非业务功能。

    例如:书籍的增删改,本身只需要完成增删改的功能即可,这是如果需要添加日志功能,那么需要在原有的代码基础上,去修改添加日志功能,受牵连的方法就三个(add/edit/del)了;

            1.3 aop的关键概念名词?

            AOP有一些关键性的概念名词,非常重要,我们来一一看看:

            ①:连接点(Joinpoint)

    连接点(Joinpoint):程序执行过程中明确的点,如方法的调用,或者异常的抛出。

            ②:目标对象(Target)

    目标(Target):被通知(被代理)的对象

    注1:完成具体的业务逻辑

            ③:通知(Advice)

    通知(Advice):在某个特定的连接点上执行的动作,同时Advice也是程序代码的具体实现,例如一个实现日志记录的代码(通知有些书上也称为处理)

    注2:完成切面编程

            ④:代理(Proxy)

    代理(Proxy):将通知应用到目标对象后创建的对象(代理=目标+通知),

                 例子:外科医生+护士

    注3:只有代理对象才有AOP功能,而AOP的代码是写在通知的方法里面的

            ⑤:切入点(Pointcut)

    切入点(Pointcut):多个连接点的集合,定义了通知应该应用到那些连接点。

                     (也将Pointcut理解成一个条件 ,此条件决定了容器在什么情况下将通知和目标组合成代理返回给外部程序)

            ⑥:适配器(Advisor)

    适配器(Advisor):适配器=通知(Advice)+切入点(Pointcut) 


    二、通知代码的分类

    关于aop切面编程主要就是写通知,所以我们着重来看一下通知方面的一些案例!

            2.1 前置通知

            首先我们准备一些类:

            BookBiz接口类:

    1. package com.leaf.aop.biz;
    2. public interface BookBiz {
    3. // 购书
    4. public boolean buy(String userName, String bookName, Double price);
    5. // 发表书评
    6. public void comment(String userName, String comments);
    7. }

            PriceException 异常类:

    1. package com.leaf.aop.exception;
    2. /**
    3. * 异常类
    4. * @author Leaf
    5. *
    6. * 2022年8月7日 下午11:13:58
    7. */
    8. public class PriceException extends RuntimeException {
    9. public PriceException() {
    10. super();
    11. }
    12. public PriceException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
    13. super(message, cause, enableSuppression, writableStackTrace);
    14. }
    15. public PriceException(String message, Throwable cause) {
    16. super(message, cause);
    17. }
    18. public PriceException(String message) {
    19. super(message);
    20. }
    21. public PriceException(Throwable cause) {
    22. super(cause);
    23. }
    24. }

    BookBizImpl实现类:就是前面说的目标对象

    1. package com.leaf.aop.impl;
    2. import com.leaf.aop.biz.BookBiz;
    3. import com.leaf.aop.exception.PriceException;
    4. /**
    5. * 实现类
    6. * @author Leaf
    7. *
    8. * 2022年8月7日 下午11:15:02
    9. */
    10. public class BookBizImpl implements BookBiz {
    11. public BookBizImpl() {
    12. super();
    13. }
    14. public boolean buy(String userName, String bookName, Double price) {
    15. // 通过控制台的输出方式模拟购书
    16. if (null == price || price <= 0) {
    17. throw new PriceException("book price exception");
    18. }
    19. System.out.println(userName + " buy " + bookName + ", spend " + price);
    20. return true;
    21. }
    22. public void comment(String userName, String comments) {
    23. // 通过控制台的输出方式模拟发表书评
    24. System.out.println(userName + " say:" + comments);
    25. }
    26. }

     准备工作做好了后我们就可以开始来编写第一个通知啦:

    目标:实现在买书、评论前加系统日志

    前置通知类:MyMethodBeforeAdvice

    1. package com.leaf.aop.advice;
    2. import java.lang.reflect.Method;
    3. import java.util.Arrays;
    4. import org.springframework.aop.MethodBeforeAdvice;
    5. /**
    6. * 前置通知
    7. * 实现org.springframework.aop.MethodBeforeAdvice接口
    8. * 买书、评论前加系统日志
    9. * @author Leaf
    10. *
    11. * 2022年8月7日 下午11:20:13
    12. */
    13. public class MyMethodBeforeAdvice implements MethodBeforeAdvice {
    14. @Override
    15. public void before(Method arg0, Object[] arg1, Object arg2) throws Throwable {
    16. //买书、评论前加系统日志
    17. //拿到目标对象的类名
    18. String clzName = arg2.getClass().getName();
    19. //拿到当前调用的方法名
    20. String methodName = arg0.getName();
    21. //调用当前方法所传递的参数
    22. String args = Arrays.toString(arg1);
    23. //系统日志
    24. System.out.println("【系统日志】:"+clzName+"."+methodName+"被调用,传递的参数为:"+args);
    25. }
    26. }

    配置到Spring-context.xml文件: 

    1. <beans xmlns="http://www.springframework.org/schema/beans"
    2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    3. xmlns:aop="http://www.springframework.org/schema/aop"
    4. xmlns:context="http://www.springframework.org/schema/context"
    5. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
    6. http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.3.xsd
    7. http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.3.xsd">
    8. <bean class="com.leaf.aop.impl.BookBizImpl" id="bookBiz">bean>
    9. <bean class="com.leaf.aop.advice.MyMethodBeforeAdvice" id="myBefore">bean>
    10. <bean class="org.springframework.aop.framework.ProxyFactoryBean" id="bookProxy">
    11. <property name="target" ref="bookBiz">property>
    12. <property name="proxyInterfaces" >
    13. <list>
    14. <value>com.leaf.aop.biz.BookBizvalue>
    15. list>
    16. property>
    17. <property name="interceptorNames" >
    18. <list>
    19. <value>myBeforevalue>
    20. list>
    21. property>
    22. bean>
    23. beans>

    最后我们建立一个测试类来看看是否实现了前置通知:Demo1

    1. package com.leaf.aop.test;
    2. import org.springframework.context.support.ClassPathXmlApplicationContext;
    3. import com.leaf.aop.biz.BookBiz;
    4. public class Demo1 {
    5. @SuppressWarnings("resource")
    6. public static void main(String[] args) {
    7. ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext("/spring-context.xml");
    8. //获取目标对象
    9. //BookBiz bean = (BookBiz) context.getBean("bookBiz");
    10. //获取代理对象
    11. BookBiz bean = (BookBiz) context.getBean("bookProxy");
    12. //调用买书的方法
    13. bean.buy("Leaf", "《JAVA编程思想》", 58.90d);
    14. //调用评论的方法
    15. bean.comment("Leaf", "对Java代码理解更深了");
    16. }
    17. }

     运行:


             2.2 后置通知

            目标:实现买书返利(存在bug)

            后置通知类:MyAfterReturningAdvice

    1. package com.leaf.aop.advice;
    2. import java.lang.reflect.Method;
    3. import java.util.Arrays;
    4. import org.springframework.aop.AfterReturningAdvice;
    5. /**
    6. * 后置通知
    7. * @author Leaf
    8. *
    9. * 2022年8月8日 上午12:07:56
    10. */
    11. public class MyAfterReturningAdvice implements AfterReturningAdvice {
    12. @Override
    13. public void afterReturning(Object arg0, Method arg1, Object[] arg2, Object arg3) throws Throwable {
    14. //拿到目标对象的类名
    15. String clzName = arg3.getClass().getName();
    16. //拿到当前调用的方法名
    17. String methodName = arg1.getName();
    18. //调用当前方法所传递的参数
    19. String args = Arrays.toString(arg2);
    20. //方法调用的返回值
    21. System.out.println("【买书返利】:"+clzName+"."+methodName+"被调用,传递的参数为:"+args+";目标对象方法返回值为:"+arg0);
    22. }
    23. }

    然后配置到spring-context.xml的步骤和上面是一样的;

    然后我们依然运行Demo1:

    但是呢,这个时候我们的买书返利存在着一定的bug

    不管是买书还是评论都会有返利,这不符合常规。 

    我们在后面的通知中会解决掉。 


            2.3 环绕通知

            类似拦截器,会包括切入点,目标类前后都会执行代码。

            环绕通知就等于:前置通知加上后置通知,所以我们一般就写一个环绕通知就行了。

           我们还是先写一个通知类:MyMethodInterceptor

    1. package com.leaf.aop.advice;
    2. import java.util.Arrays;
    3. import org.aopalliance.intercept.MethodInterceptor;
    4. import org.aopalliance.intercept.MethodInvocation;
    5. /**
    6. * 环绕通知=前置通知+后置通知
    7. * @author Leaf
    8. *
    9. * 2022年8月8日 上午12:28:46
    10. */
    11. public class MyMethodInterceptor implements MethodInterceptor {
    12. @Override
    13. public Object invoke(MethodInvocation arg0) throws Throwable {
    14. //拿到目标对象的类名
    15. String clzName = arg0.getThis().getClass().getName();
    16. //拿到当前调用的方法名
    17. String methodName = arg0.getMethod().getName();
    18. //调用当前方法所传递的参数
    19. String args = Arrays.toString(arg0.getArguments());
    20. System.out.println("【环绕通知】:"+clzName+"."+methodName+"被调用,传递的参数为:"+args);
    21. //方法调用的返回值:arg0.proceed();
    22. Object rs = arg0.proceed();
    23. System.out.println("【环绕通知】:目标对象方法返回值为:"+rs);
    24. return rs;
    25. }
    26. }

    然后配置到spring-context.xml的步骤都还是一样的;

    最后我们就还是运行Demo1测试看效果: 

            


            2.4 异常通知

            出现异常执行系统提示,然后进行处理。价格异常为例;

            但是我们的异常通知与前面三大通知又有点不一样,它不需要实现其中的方法,

    但是它的方法名却又必须固定为:afterThrowing

    我们一起编写一 个异常通知类来看看:MyThrowsAdvice

    1. package com.leaf.aop.advice;
    2. import org.springframework.aop.ThrowsAdvice;
    3. import com.leaf.aop.exception.PriceException;
    4. /**
    5. * 关于异常通知
    6. * 相较于前置通知、后置通知、环绕通知有一个非常大的区别
    7. * 前面三大通知都需要实现其中的方法
    8. * 异常通知则不需要,但是,它的方法名又是固定的
    9. * @author Leaf
    10. *
    11. * 2022年8月8日 上午1:48:07
    12. */
    13. public class MyThrowsAdvice implements ThrowsAdvice {
    14. /**
    15. * 异常通知方法:
    16. * 方法名必须是:afterThrowing
    17. * 不然就会报错
    18. * @param p 异常类
    19. */
    20. public void afterThrowing(PriceException p) {
    21. System.out.println("【异常通知】:当价格发生异常,那么执行此处代码块!!!");
    22. }
    23. }

    然后照样配置到spring-context.xml文件中;

    这次我们测试Demo1的时候把价格改为负数,即为价格异常:

    然后我们看看结果:

            


            2.5 过滤通知(适配器)

                   这个过滤通知就可以解决:我们前面后置通知写的 返利功能 的 bug;

            但是过滤通知与其他的几大通知有所不一样,不用特别写一个通知类实现,

    而是Spring提供了一个类,我们只需要在spring-context.xml中配置就好了。

    我们看看如何配置:

    1. <beans xmlns="http://www.springframework.org/schema/beans"
    2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    3. xmlns:aop="http://www.springframework.org/schema/aop"
    4. xmlns:context="http://www.springframework.org/schema/context"
    5. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
    6. http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.3.xsd
    7. http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.3.xsd">
    8. <bean class="com.leaf.aop.advice.MyAfterReturningAdvice" id="myAfter">bean>
    9. <bean class="org.springframework.aop.support.RegexpMethodPointcutAdvisor" id="myAfterPlus">
    10. <property name="advice" ref="myAfter">property>
    11. <property name="pattern" value=".*buy">property>
    12. bean>
    13. <bean class="org.springframework.aop.framework.ProxyFactoryBean" id="bookProxy">
    14. <property name="target" ref="bookBiz">property>
    15. <property name="proxyInterfaces" >
    16. <list>
    17. <value>com.leaf.aop.biz.BookBizvalue>
    18. list>
    19. property>
    20. <property name="interceptorNames" >
    21. <list>
    22. <value>myAfterPlusvalue>
    23. list>
    24. property>
    25. bean>
    26. beans>

    然后最后我们来测试运行Demo1看看结果:

     


    OK,到这里今天Leaf带来的关于Spring的AOP模块的相关知识就结束啦,有不理解的地方可以私信或者评论问我,我们下次见啦!!!

  • 相关阅读:
    关于Google推出的AAB,你了解多少
    Idea中使用测试类,提示无可任务No tasks available
    【leetcode】【2022/9/3】646. 最长数对链
    TS项目实战三:Express实现登录注册功能后端
    Sulfo-Cy5 羧酸,Sulfo-Cyanine5 carboxylic acid,花青素荧光染料Cy5标记羧酸
    iOS - 多线程-GCD
    springboot弘德图书馆座位预约管理系统-计算机毕业设计源码07028
    记录一次Idea 无法下载源码事件
    Go在招聘中最吃香、安全工程师薪资涨幅最高 | Hired年度软件工程师报告出炉
    从零入门激光SLAM(十一)——LeGo-LOAM源码超详细解析1
  • 原文地址:https://blog.csdn.net/qq_63492318/article/details/126218611