• 基于XML的AOP之四种通知日志记录案例


    案例如下:

    1、 创建maven的jar工程,导入依赖坐标,spring的任何部分的运行都需要IOC的支持,故要导入spring-context依赖,spring-context中含有spring-aop。Aspectjweaver是用来解析切入点表达式的

    <dependencies>
            <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.8.7</version>
            </dependency>
        </dependencies>

    2、 编写业务层的接口

    public interface IAccountService {
        //模拟保存账户 无参无返回值
       void saveAccount();
        //模拟更新账户 有参无返回值
       void updateAccount(int i);
        //删除账户     无参有返回值
       int  deleteAccount();
    }

    3、编写业务层接口的实现类:

    public class AccountServiceImpl implements IAccountService{
        @Override
        public void saveAccount() {
            System.out.println("执行了保存");
        }
        @Override
        public void updateAccount(int i) {
            System.out.println("执行了更新"+i);
        }
        @Override
        public int deleteAccount() {
            System.out.println("执行了删除");
            return 0;
        }
    }

    4、 创建一个具有公共代码的类:

    public class Logger {
      //前置通知
      public void beforePrintLog(){
      System.out.println("前置通知Logger类中的beforePrintLog方法开始记录日志了。。。");
      }
      //后置通知
      public void afterReturningPrintLog(){
      System.out.println("后置通知Logger类中的afterReturningPrintLog方法开始记录日志了。。。");
      }
      //异常通知
      public void afterThrowingPrintLog(){
      System.out.println("异常通知Logger类中的afterThrowingPrintLog方法开始记录日志了。。。");
      }
      //最终通知
      public void afterPrintLog(){
      System.out.println("最终通知Logger类中的afterPrintLog方法开始记录日志了。。。");
      }
     }

    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
            http://www.springframework.org/schema/beans/spring-beans.xsd
            http://www.springframework.org/schema/aop
            http://www.springframework.org/schema/aop/spring-aop.xsd">
        <!-- 配置srping的Ioc,把service对象配置进来-->
        <bean id="accountService" class="com.itheima.service.impl.AccountServiceImpl"></bean>
        <!-- 配置Logger类 -->
        <bean id="logger" class="com.itheima.utils.Logger"></bean>
      <!--配置AOP-->
    <aop:config>
    <!-- 配置切入点表达式 id属性用于指定表达式的唯一标识。expression属性用于指定表达式内容
    此标签写在aop:aspect标签内部只能当前切面使用。
    它还可以写在aop:aspect外面,此时就变成了所有切面可用
    -->
    <aop:pointcut id="pt1" expression="execution(* com.itheima.service.impl.*.*(..))"></aop:pointcut>
    <!--配置切面 -->
    <aop:aspect id="logAdvice" ref="logger">
    <!-- 配置前置通知:在切入点方法执行之前执行-->
    <aop:before method="beforePrintLog" pointcut-ref="pt1" ></aop:before>
    <!-- 配置后置通知:在切入点方法正常执行之后值。它和异常通知永远只能执行一个-->
    <aop:after-returning method="afterReturningPrintLog" pointcut-ref="pt1"></aop:after-returning>
    <!-- 配置异常通知:在切入点方法执行产生异常之后执行。它和后置通知永远只能执行一个-->
    <aop:after-throwing method="afterThrowingPrintLog" pointcut-ref="pt1"></aop:after-throwing>
    <!-- 配置最终通知:无论切入点方法是否正常执行它都会在其后面执行-->
    <aop:after method="afterPrintLog" pointcut-ref="pt1"></aop:after>
    </aop:aspect>
    </aop:config>
    </beans>

    如果不是用动态代理去编码的方式,在执行service的切入点方法之前先实现打印日志的方法,而是用配置的方式,应该如何去做呢?

    spring中基于XML的AOP配置步骤:

    1)、把通知BeanLogger类)也交给spring来管理(配置切面需要,如果使用注解的AOP,则不需要交给spring来管理
    2)、使用aop:config标签表明开始AOP的配置(所以必须导入aop的名称空间) 
    3)、使用aop:aspect标签表明配置切面
            id属性:是给切面提供一个唯一标识
            ref属性:是指定通知类beanId
    4)、在aop:aspect标签的内部使用对应标签来配置通知的类型
           我们现在示例是让printLog方法在切入点方法执行之前之前:所以是前置通知
           aop:before:表示配置前置通知
                method属性:用于指定Logger类中哪个方法是前置通知
                pointcut属性:用于指定切入点pointcut表达式,该表达式的含义指的是对业务层中哪些方法增强建立通知方法和切入点方法的关联。

    6、测试:

    public class AOPTest {
        public static void main(String[] args) {
            //1.获取容器
            ApplicationContext ac = new ClassPathXmlApplicationContext("bean.xml");
            //2.获取对象
            IAccountService as = (IAccountService)ac.getBean("accountService");
            //3.执行方法
            as.saveAccount();
        }
    }

    结果如下:

    我们的程序没有产生异常,所以没有产生异常通知。

    后置通知:在切入点方法正常执行之后执行,它和异常通知永远只能执行一个。

    异常通知:在切入点方法执行产生异常之后执行。它和后置通知永远只能执行一个。

    最终通知:无论切入点方法是否正常执行,它都会在其后面执行。

    当前切入点表达式public void com.itheima.service.impl.AccountServiceImpl.saveAccount()只能对saveAccount()方法进行增强。但是,通常情况下,我们是对业务层所有的方法进行增强,尤其在事务控制时.

    切入点表达式的写法:

            关键字:execution(表达式)
            表达式:
                访问修饰符  返回值  包名.包名.包名...类名.方法名(参数列表)
            标准的表达式写法
                public void com.itheima.service.impl.AccountServiceImpl.saveAccount()
            访问修饰符可以省略
                void com.itheima.service.impl.AccountServiceImpl.saveAccount()
            返回值可以使用通配符表示任意返回值
                * com.itheima.service.impl.AccountServiceImpl.saveAccount()
            包名可以使用通配符,表示任意包。但是有几级包,就需要写几个*.
                * *.*.*.*.AccountServiceImpl.saveAccount())
            包名可以使用..表示当前包及其子包
                * *..AccountServiceImpl.saveAccount()
            类名和方法名都可以使用*来实现通配
                * *..*.*()
            参数列表:
                可以直接写数据类型:
                    基本类型直接写名称           int   * *..*.*(int)
                    引用类型写包名.类名的方式   java.lang.String
                可以使用通配符*表示任意类型,但是必须有参数
                可以使用..表示有无参数均可,有参数可以是任意类型
            全通配写法
                * *..*.*(..)

    实际开发中不要写成全通配的方式,因为这种方式有一个很大的问题,因为所有类的方法都满足这个条件,可能对所有类的方法都进行了增强,这显然不是我们想要的。

    实际开发中切入点表达式的通常写法:切到业务层实现类下的所有方法
                    * com.itheima.service.impl.*.*(..)

    通用化切入点表达式:

    配置切入点表达式 :使用aop:pointcut标签

     

    id属性用于指定表达式的唯一标识。expression属性用于指定表达式内容

    使用:

     

    aop:pointcut标签写在aop:aspect标签内部只能当前切面(aop:aspect)使用。
     它还可以写在aop:aspect外面,此时就变成了所有切面可用,但是注意,该标签<aop:pointcut>只能放在<aop:aspect>标签之前。

     

  • 相关阅读:
    redis(二)高级用法
    redis(一) 安装以及基本数据类型操作
    RabbitMQ(五) -- topics
    JS实时数据运算
    Access数据库中Sum函数返回空值(Null)时如何设置为0
    asp检测数字类型函数
    MVC:从客户端中检测到有潜在危险的 Request.Form 值 的解决方法
    WIN8系统安装软件时提示"扩展属性不一致"的解决方法
    免费的网络扫描器-Advanced IP Scanner
    中国电信大亚DP607光猫破解,设置路由,wifi!关闭远程管理,改连接限制,SN码查询!
  • 原文地址:https://www.cnblogs.com/zwh0910/p/14628613.html
Copyright © 2020-2023  润新知