• Spring之aop


    什么是AOP:
    Aspect Oriented Programming(AOP)是较为热门的一个话题。AOP,国内大致译作“面向切面编程”。

    “面向切面编程”,这样的名字并不是非常容易理解,且容易产生一些误导。
    笔者不止一次听到类似“OOP/OOD11即将落伍,AOP是新一代软件开发方式”这样的发言。而在AOP中,Aspect的含义,可能更多的理解为“切面”比较合适。所以笔者更倾向于“面向切面编程”的译法。可以通过预编译方式和运行期动态代理实现在不修改源代码的情况下给程序动态统一添加功能的一种技术。
    AOP实际是GoF设计模式的延续,设计模式孜孜不倦追求的是调用者和被调用者之间的解耦,提高代码的灵活性和可扩展性,AOP可以说也是这种目标的一种实现。 
    应用对象只实现它们应该做的——完成业务逻辑——仅此而已。它们并不负责(甚至是意识)其它的系统级关注点,例如日志或事务支持。
    AOP主要功能
    日志记录,性能统计,安全控制,事务处理,异常处理等等wn及扩展

    AOP中关键性概念 :

    连接点(Joinpoint):程序执行过程中明确的点,如方法的调用,或者异常的抛出.
    目标(Target):被通知(被代理)的对象

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

    代理(Proxy):将通知应用到目标对象后创建的对象(代理=目标+通知),请注意:只有代理对象才有AOP功能,而AOP的代码是写在通知的方法里面的

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

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

    定义一个接口,有购书和评论两个方法 IBookBiz:

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

    BookBizImpl 实现接口

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

    异常处理 PriceException:

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

    1、前置通知 MyMethodBeforeAdvice:

     1 package com.liuwenwu.aop.advise;
     2 
     3 import java.lang.reflect.Method;
     4 import java.util.Arrays;
     5 
     6 import org.springframework.aop.MethodBeforeAdvice;
     7 
     8 /**
     9  * 前置通知
    10  * 买书、评论前加系统日志   
    11  * @author ASUS
    12  *
    13  */
    14 public class MyMethodBeforeAdvice implements MethodBeforeAdvice {
    15 
    16     @Override
    17     public void before(Method arg0, Object[] arg1, Object arg2) throws Throwable {
    18 //        哪个类被调用了
    19         String clzName=arg2.getClass().getName();
    20 //        哪个方法被调了
    21         String methodNname=arg0.getName();
    22 //        参数
    23         String params=Arrays.toString(arg1);
    24         System.out.println("【系统日志】:"+clzName+"."+methodNname+"("+params+")");    
    25     }
    26 }

    测试类 Demo1:

     1 package com.liuwenwu.aop.test;
     2 
     3 import org.springframework.context.ApplicationContext;
     4 import org.springframework.context.support.ClassPathXmlApplicationContext;
     5 
     6 import com.liuwenwu.aop.biz.IBookBiz;
     7 
     8 public class Demo1 {
     9 
    10     public static void main(String[] args) {
    11 //        从spring中获取上下文
    12         ApplicationContext context=new ClassPathXmlApplicationContext("/spring-context.xml");
    13 //        IBookBiz bean = (IBookBiz) context.getBean("bookbiz");
    14 //        System.out.println(bean.getClass());
    15         //代理对象
    16         IBookBiz bean = (IBookBiz) context.getBean("bookbizproxy");
    17 //        System.out.println(bean.getClass());
    18         
    19 //        报错之后,程序终止
    20         bean.buy("三毛", "三毛流浪记", 55d);
    21         bean.comment("三毛", "真的只有三毛");
    22     }
    23 }

    前置通知会在方法执行前就运行

    1 【系统日志】:com.liuwenwu.aop.biz.impl.BookBizImpl.buy([三毛, 三毛流浪记, 55.0])
    2 三毛 buy 三毛流浪记, spend 55.0
    3 【系统日志】:com.liuwenwu.aop.biz.impl.BookBizImpl.comment([三毛, 真的只有三毛])
    4 三毛 say:真的只有三毛

    2、后置通知 MyAfterReturningAdvice

    package com.liuwenwu.aop.advise;
    
    import java.lang.reflect.Method;
    import java.util.Arrays;
    
    import org.springframework.aop.AfterReturningAdvice;
    
    /**
     * 后置通知
     * 买书返利
     * @author ASUS
     *
     */
    public class MyAfterReturningAdvice implements AfterReturningAdvice {
    
        @Override
        public void afterReturning(Object arg0, Method arg1, Object[] arg2, Object arg3) throws Throwable {
            String clzName=arg3.getClass().getName();
            String methodNname=arg1.getName();
            String params=Arrays.toString(arg2);
            System.out.println("【后置通知(买书返利)】:"+clzName+"."+methodNname+"("+params+")");
        }
    }

    后置通知在方法执行后会运行

    【系统日志】:com.liuwenwu.aop.biz.impl.BookBizImpl.buy([三毛, 三毛流浪记, 55.0])
    三毛 buy 三毛流浪记, spend 55.0
    【后置通知(买书返利)】:com.liuwenwu.aop.biz.impl.BookBizImpl.buy([三毛, 三毛流浪记, 55.0])
    【系统日志】:com.liuwenwu.aop.biz.impl.BookBizImpl.comment([三毛, 真的只有三毛])
    三毛 say:真的只有三毛
    【后置通知(买书返利)】:com.liuwenwu.aop.biz.impl.BookBizImpl.comment([三毛, 真的只有三毛])

    3、环绕通知=前置通知+后置购置  MyMethodInterceptor:

     1 package com.liuwenwu.aop.advise;
     2 
     3 import java.util.Arrays;
     4 
     5 import org.aopalliance.intercept.MethodInterceptor;
     6 import org.aopalliance.intercept.MethodInvocation;
     7 
     8 /**
     9  * 环绕通知
    10  * 类似拦截器,会包括切入点,目标类前后都会执行代码。
    11  * @author ASUS
    12  *
    13  */
    14 public class MyMethodInterceptor implements MethodInterceptor {
    15 
    16     @Override
    17     public Object invoke(MethodInvocation arg0) throws Throwable {
    18         String clzName=arg0.getThis().getClass().getName();
    19         String methodNname=arg0.getMethod().getName();
    20         String params=Arrays.toString(arg0.getArguments());
    21         System.out.println("【环绕通知(前后都有)】:"+clzName+"."+methodNname+"("+params+")");
    22 //        returnValue是代理对象调用目标方法的返回值
    23         Object returnValue=arg0.proceed();
    24         System.out.println("【环绕通知(前后都有)】:"+clzName+"."+methodNname+"("+params+")"+"方法调用的返回值:"+returnValue);
    25         return returnValue;
    26     }
    27 
    28 }

    环绕通知在方法执行前后都会运行

    【系统日志】:com.liuwenwu.aop.biz.impl.BookBizImpl.comment([三毛, 真的只有三毛])
    【环绕通知(前后都有)】:com.liuwenwu.aop.biz.impl.BookBizImpl.comment([三毛, 真的只有三毛])
    三毛 say:真的只有三毛
    【环绕通知(前后都有)】:com.liuwenwu.aop.biz.impl.BookBizImpl.comment([三毛, 真的只有三毛])方法调用的返回值:null
    【后置通知(买书返利)】:com.liuwenwu.aop.biz.impl.BookBizImpl.comment([三毛, 真的只有三毛])

    4、异常通知 

     1 package com.liuwenwu.aop.advise;
     2 
     3 import org.springframework.aop.ThrowsAdvice;
     4 
     5 import com.liuwenwu.aop.exception.PriceException;
     6 /**
     7  * 异常通知
     8  * @author ASUS
     9  *
    10  */
    11 public class MyThrowsAdvice implements ThrowsAdvice {
    12     public void afterThrowing( PriceException ex ) {
    13         System.out.println("价格输入有误,购买失败,请重新输入!!!");
    14         
    15     }
    16 }

    异常通知的作用是在程序出了BUG终止是也会先运行完异常通知里的代码

    信息: Loading XML bean definitions from class path resource [spring-context.xml]
    Exception in thread "main" 【系统日志】:com.liuwenwu.aop.biz.impl.BookBizImpl.buy([三毛, 三毛流浪记, -55.0])
    价格输入有误,购买失败,请重新输入!!!
    com.liuwenwu.aop.exception.PriceException: book price exception

    spring-context.xml配置

     1 <!-- aop知识点 -->
     2     <!-- 目标 -->
     3     <bean id="bookbiz" class="com.liuwenwu.aop.biz.impl.BookBizImpl"></bean>
     4     
     5     <!-- 前置通知 -->
     6     <bean id="myMethodBeforeAdvice" class="com.liuwenwu.aop.advise.MyMethodBeforeAdvice"></bean>
     7     
     8     <!-- 后置通知 -->
     9     <bean id="myAfterReturningAdvice" class="com.liuwenwu.aop.advise.MyAfterReturningAdvice"></bean>
    10     
    11     <!-- 环绕通知 -->
    12     <bean id="myMethodInterceptor" class="com.liuwenwu.aop.advise.MyMethodInterceptor"></bean>
    13     
    14     <!-- 异常通知 -->
    15     <bean id="myThrowsAdvice" class="com.liuwenwu.aop.advise.MyThrowsAdvice"></bean>
    16     
    17     <!-- 过滤通知 -->
    18     <bean id="myAfterReturningAdvicePlus" class="org.springframework.aop.support.RegexpMethodPointcutAdvisor">
    19         <!-- 过滤规则 -->
    20         <property name="advice" ref="myAfterReturningAdvice"></property>
    21         <!-- <property name="pattern" value=".*buy"></property> -->
    22         <property name="patterns">
    23             <list>
    24                 <value>.*buy</value>
    25             </list>
    26         </property>
    27     </bean>
    28     
    29     <!-- 目标+通知=代理对象 -->
    30     <bean id="bookbizproxy" class="org.springframework.aop.framework.ProxyFactoryBean">
    31         <!-- 目标 -->
    32         <property name="target" ref="bookbiz"></property>
    33         <!-- 代理的接口(目标对象所实现的接口) -->
    34         <property name="proxyInterfaces">
    35             <list>
    36                 <value>com.liuwenwu.aop.biz.IBookBiz</value>
    37             </list>
    38         </property>
    39         <!-- 通知 -->
    40         <property name="interceptorNames">
    41             <list>
    42                 <value>myMethodBeforeAdvice</value>
    43                 <value>myAfterReturningAdvice</value>
    44                 <!-- <value>myAfterReturningAdvicePlus</value> -->
    45                 <!-- <value>myMethodInterceptor</value> -->
    46                 <value>myThrowsAdvice</value>
    47             </list>
    48         </property>
    49     </bean>

    5、过滤通知:

    <bean id="myAfterReturningAdvicePlus" class="org.springframework.aop.support.RegexpMethodPointcutAdvisor">
            <!-- 过滤规则 -->
            <property name="advice" ref="myAfterReturningAdvice"></property>
            <!-- <property name="pattern" value=".*buy"></property> -->
            <property name="patterns">
                <list>
                    <value>.*buy</value>
                </list>
            </property>
        </bean>

    结果:评论后没有返利

    【系统日志】:com.liuwenwu.aop.biz.impl.BookBizImpl.buy([三毛, 三毛流浪记, 55.0])
    三毛 buy 三毛流浪记, spend 55.0
    【后置通知(买书返利)】:com.liuwenwu.aop.biz.impl.BookBizImpl.buy([三毛, 三毛流浪记, 55.0])
    【系统日志】:com.liuwenwu.aop.biz.impl.BookBizImpl.comment([三毛, 真的只有三毛])
    三毛 say:真的只有三毛
  • 相关阅读:
    ElasticSearch(ES)学习笔记
    Lucene學習日志
    velocity代码生成器的使用
    springboot学习笔记
    springmvc json 类型转换错误
    在做del业务时,传递参数,和接口中入参注释
    做add添加业务时,字符集乱码,form标签库,button的href 问题,添加后页面跳转,forward,redirect 。定制错误输出
    mybatis中联合查询的返回结果集
    mybatis分页,绝对路径的2种写法
    maven导入项目时报错,配置应用程序监听器[org.springframework.web.context.ContextLoaderListener]错误
  • 原文地址:https://www.cnblogs.com/hyfl/p/11416220.html
Copyright © 2020-2023  润新知