• Spring AOP


                                                                     文章目录

    一、AOP简介

    二、核心点

    三、核心点代码讲述

    前置通知

     后置通知

     环绕通知

     异常通知

     过滤通知--适配器

     本章小结


    一、AOP简介

    AOP面向切面(方面)编程,扩展功能不修改源代码实现

    AOP中关键性概念 
    连接点(Joinpoint)程序执行过程中明确的点,如方法的调用,或者异常的抛出.

    目标(Target)被通知(被代理)的对象
    :完成具体的业务逻辑

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

    代理(Proxy)将通知应用到目标对象后创建的对象(代理=目标+通知)
                 例子:外科医生+护士
    :只有代理对象才有AOP功能,而AOP的代码是写在通知的方法里面的

    切入点(Pointcut)多个连接点的集合,定义了通知应该应用到那些连接点
     (也将Pointcut理解成一个条件 ,此条件决定了容器在什么情况下将通知和目标组合成代理返回给外部程序)

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

    如何实现AOP👀👀
    目标对象只负责业务逻辑代码
    通知对象负责AOP代码,这二个对象都没有AOP的功能,只有代理对象才有

    Aop的好处(日志记录) 

    二、核心点

    我们以书籍的增删改查为例

    借助以下几种通知,结合案例代码讲述AOP

    前置通知
       实现org.springframework.aop.MethodBeforeAdvice接口
       买书、评论前加系统日志

    后置通知
        实现org.springframework.aop.AfterReturningAdvice接口
        买书返利(存在bug)

     环绕通知
        org.aopalliance.intercept.MethodInterceptor
        类似拦截器,会包括切入点,目标类前后都会执行代码。
            
    异常通知
         org.springframework.aop.ThrowsAdvice
         出现异常执行系统提示,然后进行处理。价格异常为例
            
    过滤通知(适配器)
         org.springframework.aop.support.RegexpMethodPointcutAdvisor
         处理买书返利的bug

    三、核心点代码讲述

    前置通知

    在连接点之前执行的通知
    案例:在购书系统当中使用AOP方式实现日志系统

     BookBiz 

    1. package com.xiaokun.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. }

    BookBizImpl  

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

     处理异常类PriceException 

    1. package com.xiaokun.aop.exception;
    2. public class PriceException extends RuntimeException {
    3. public PriceException() {
    4. super();
    5. }
    6. public PriceException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
    7. super(message, cause, enableSuppression, writableStackTrace);
    8. }
    9. public PriceException(String message, Throwable cause) {
    10. super(message, cause);
    11. }
    12. public PriceException(String message) {
    13. super(message);
    14. }
    15. public PriceException(Throwable cause) {
    16. super(cause);
    17. }
    18. }

    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.xiaokun.aop.biz.impl.BookBizImpl">bean>
    9. <bean class="com.xiaokun.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.xiaokun.aop.biz.BookBizvalue>
    15. list>
    16. property>
    17. <property name="interceptorNames">
    18. <list>
    19. <value>myBeforevalue>
    20. list>
    21. property>
    22. bean>
    23. beans>

    MyMethodBeforeAdvice  

    1. package com.xiaokun.aop.advice;
    2. import java.lang.reflect.Method;
    3. import java.util.Arrays;
    4. import org.springframework.aop.MethodBeforeAdvice;
    5. public class MyMethodBeforeAdvice implements MethodBeforeAdvice{
    6. @Override
    7. public void before(Method arg0, Object[] arg1, Object arg2) throws Throwable {
    8. //目标对象的类名
    9. String clzname = arg2.getClass().getName();
    10. //当前调用的方法是
    11. String methodName = arg0.getName();
    12. //当前调用方法所传递参数
    13. String args = Arrays.toString(arg1);
    14. System.out.println("【系统日志】:"+clzname+"."+methodName+"被调用,传递的参数"+args);
    15. }
    16. }

     创建一个Demo测试一下

    1. package com.xiaokun.aop.test;
    2. import org.springframework.context.support.ClassPathXmlApplicationContext;
    3. import com.xiaokun.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. // BookBiz bean =(BookBiz) context.getBean("bookBiz");
    9. BookBiz bean =(BookBiz) context.getBean("bookProxy");
    10. bean.buy("小坤", "是美女", 778);
    11. bean.comment("哈哈哈", "啦啦啦");
    12. }
    13. }

     后置通知

    在连接点正常完成后执行的通知
    案例:在线购书系统中,要求不修改BookBizImpl代码的情况下增加如下功能,对买书的用户进行返利,每买本书返利3元(后置通知),即:每调用一次buy方法打印:[销售返利][时间]返利3

     MyAfterReturningAdvice 

    1. package com.xiaokun.aop.advice;
    2. import java.lang.reflect.Method;
    3. import java.util.Arrays;
    4. import org.springframework.aop.AfterReturningAdvice;
    5. public class MyAfterReturningAdvice implements AfterReturningAdvice {
    6. public void afterReturning(Object returnValue, Method method, Object[] args, Object target) throws Throwable {
    7. String targetName = target.getClass().getName();
    8. String methodName = method.getName();
    9. String params = Arrays.toString(args);
    10. String msg = "【返利通知:返利3元】:正在调用" + targetName + "." + methodName + ",携带的参数:" + params + ";目标对象所调用的方法的返回值:"
    11. + returnValue;
    12. System.out.println(msg);
    13. }
    14. }

    记得在spring-context.xml中加上

    1. <bean class="com.xiaokun.aop.advice.MyAfterReturningAdvice" id="myAfter">bean>
    2. <property name="interceptorNames">
    3. <list>
    4. <value>myBeforevalue>
    5. <value>myAftervalue>
    6. list>
    7. property>

     环绕通知

    包围一个连接点的通知,最大特点是可以修改返回值,由于它在方法前后都加入了自己的逻辑代码,因此功能异常强大,它通过MethodInvocation.proceed()来调用目标方法(甚至可以不调用,这样目标方法就不会执行)

    案例:修改日志系统不光要输出参数,还要输出返回值

    MyMethodInterceptor 

    1. package com.xiaokun.aop.advice;
    2. import java.lang.reflect.Method;
    3. import java.util.Arrays;
    4. import org.aopalliance.intercept.MethodInterceptor;
    5. import org.aopalliance.intercept.MethodInvocation;
    6. public class MyMethodInterceptor implements MethodInterceptor {
    7. public Object invoke(MethodInvocation invocation) throws Throwable {
    8. Object target = invocation.getThis();
    9. Method method = invocation.getMethod();
    10. Object[] args = invocation.getArguments();
    11. String targetName = target.getClass().getName();
    12. String methodName = method.getName();
    13. String params = Arrays.toString(args);
    14. String msg = "【环绕通知】:正在调用->" + targetName + "." + methodName + ",携带的参数:" + params;
    15. System.out.println(msg);
    16. Object returnValue = invocation.proceed();
    17. String msg2 = "【环绕通知】:目标对象所调用的方法的返回值:" + returnValue;
    18. System.out.println(msg2);
    19. return returnValue;
    20. }
    21. }
    1. <bean class="com.xiaokun.aop.advice.MyMethodInterceptor" id="myMethod">bean>
    2. <property name="interceptorNames">
    3. <list>
    4. <value>myBeforevalue>
    5. <value>myAftervalue>
    6. <value>myMethodvalue>
    7. list>
    8. property>

    异常通知

    在方法抛出异常退出时执行

    案例: 书本价格为负数时抛出一个异常,通过异常通知取消此订单

    1. package com.xiaokun.aop.advice;
    2. import org.springframework.aop.ThrowsAdvice;
    3. import com.xiaokun.aop.exception.PriceException;
    4. /**
    5. * 关于过滤通知:
    6. * 相较于前置通知、后置通知、环绕通知有一个非常大的区别
    7. * 前面三大通知都需要实现其中的方法
    8. * 环绕通知则不需要,但是它的方法名又是固定的
    9. * @author 小坤
    10. *
    11. */
    12. public class MyThrowsAdvice implements ThrowsAdvice{
    13. public void afterThrowing(PriceException p) {
    14. System.out.println("【异常通知】:当前价格发生异常,那么执行此处代码块");
    15. }
    16. }
    1. <bean class="com.xiaokun.aop.advice.MyThrowsAdvice" id="myThrows">bean>
    2. <property name="interceptorNames">
    3. <list>
    4. <value>myBeforevalue>
    5. <value>myAftervalue>
    6. <value>myMethodvalue>
    7. <value>myThrowsvalue>
    8. list>
    9. property>

    过滤通知--适配器

    处理买书返利的bug

    案例:通过适配器解决发书评时也返利的问题

    1. <bean class="org.springframework.aop.support.RegexpMethodPointcutAdvisor" id="myAfterPlus">
    2. <property name="advice" ref="myAter">property>
    3. <property name="pattern" value=".buy">property>
    4. bean>
    1. <bean class="org.springframework.aop.framework.ProxyFactoryBean"
    2. id="proxyFactoryBean">
    3. <property name="target" ref="bookBiz">property>
    4. <property name="proxyInterfaces">
    5. <list>
    6. <value>com.xiaokun.aop.biz.IBookBizvalue>
    7. list>
    8. property>
    9. <property name="interceptorNames">
    10. <list>
    11. <value>MyBeforevalue>
    12. <value>MyAftervalue>
    13. <value>MyFilterAdvicevalue>
    14. <value>MyExceptionvalue>
    15. list>
    16. property>
    17. bean>

     本章小结

    浅做个总结🤪🤪🤪

    Aop面向切面编程
    主要作用:
            将核心的业务功能与非核心的业务功能进行分离;

            将核心的业务功能写到目标对象中,将非核心的业务功能写到通知中

    专业名词:
            通知、连接点、目标对象、切入点、代理、适配器

    日常开发中通常的应用场景:
            事务管理、日志

            事务的开启:前置通知

            事务的提交:后置通知

            事务的回滚:异常通知
     

  • 相关阅读:
    linux安装达梦数据库(命令行安装)
    【C++11重点语法上】lambda表达式,初始化列表
    Nginx和Ribbon实现负载均衡的区别
    Linux--I/O复用之select
    maya 桥接 Maya tutorial: How to use the Bridge function in Maya
    《Python 计算机视觉编程》学习笔记(二)
    电商直播系统的开发方式及费用,提供直播商城平台城搭建方案
    Linux知识点 -- 网络基础(二)-- 应用层
    0基础学习PyFlink——流批模式在主键上的对比
    【论文阅读】An Evaluation of Concurrency Control with One Thousand Cores
  • 原文地址:https://blog.csdn.net/weixin_67450855/article/details/126219858