Aop(面向切面编程)

  1. 使用注解的方式:

    1. 加入相应的jar包:

      1. com.springsource.org.aopalliance-1.0.0.jar
      2. com.springsource.org.aspectj.weaver-1.6.8.RELEASE.jar
      3. sping-aspects-4.3.3.RELEASE.jar
    2. 创建一个切面类

      package com.alibaba.wlq.invoke;
      
      import java.util.Arrays;
      
      import org.aspectj.lang.JoinPoint;
      import org.aspectj.lang.annotation.After;
      import org.aspectj.lang.annotation.Aspect;
      import org.aspectj.lang.annotation.Before;
      import org.springframework.stereotype.Component;
      //@Aspect:表示该类为切面类
      @Aspect
      //@Component:表示该类由Spring管理
      @Component
      public class logAspect {
      //@Before:表示before方法在被通知的程序类的方法执行之前执行
      //execution():表示需要被通知的类中的add方法,add方法可以用通配符表示,那就表示该类中所有的方法都要被通知
      @Before(value="execution(* com.alibaba.wlq.invoke.ArithmeticImp.add(double,double))")
      //JoinPoint:是程序执行中的一个精确执行点,例如类中的一个方法。它是一个抽象的概念,在实现AOP时,并不需要去定义一个join point
      public void before(JoinPoint joinpoint) {
      //获得被通知程序类的参数,返回类型是一个数组
      Object[] args = joinpoint.getArgs();
      //获取被通知程序类的方法名,返回类型是字符串
      String name = joinpoint.getSignature().getName();
      System.out.println("alibaba------>the method "+name+" begin with"+Arrays.asList(args));
      } //@After:后置通知,表示在类的方法执行后、类中的return方法执行前执行
      @After(value="execution(* com.alibaba.wlq.invoke.ArithmeticImp.add(double,double))")
      public void after() {
      System.out.println("alibaba------>the method *** end result");
      }
      }
    3. 创建被通知的类的接口

      package com.alibaba.wlq.invoke;
      
      public interface Arithmetic {
      public double add(double a,double b);
      }
    4. 创建被通知的类并且继承接口重写其中的方法

      package com.alibaba.wlq.invoke;
      
      import org.springframework.stereotype.Component;
      
      @Component
      public class ArithmeticImp implements Arithmetic{ @Override
      public double add(double a, double b) {
      double result = a + b;
      System.out.println(result);
      return result;
      } }
    5. 配置文件中的配置

      <?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:context="http://www.springframework.org/schema/context"
      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/context http://www.springframework.org/schema/context/spring-context-4.2.xsd
      http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.2.xsd"> <!-- 包扫描,前提加入aop的jar包 -->
      <context:component-scan base-package="com.alibaba.wlq"></context:component-scan>
      <!-- 开启切面注解 -->
      <aop:aspectj-autoproxy/>
      </beans>
    6. 测试类

      package com.alibaba.wlq.test;
      
      import org.springframework.context.ApplicationContext;
      import org.springframework.context.support.ClassPathXmlApplicationContext; import com.alibaba.wlq.controller.UsersController;
      import com.alibaba.wlq.invoke.Arithmetic;
      import com.alibaba.wlq.invoke.ArithmeticImp; public class Test2 { public static void main(String[] args) {
      // TODO Auto-generated method stub
      ApplicationContext app = new ClassPathXmlApplicationContext("app3.xml");
      Arithmetic arith = (Arithmetic) app.getBean("arithmeticImp");
      arith.add(15.0, 20.0);
      }
      }
    7. 打印结果

      alibaba------>the method add begin with[15.0, 20.0]
      35.0
      alibaba------>the method *** end result
  2. 使用xml配置文件

    1. 导入相应的jar包

    2. 创建接口并且创建相应的类实现该接口

      package com.alibaba.wlq.invoke;
      
      public interface Metic {
      public double add(double a,double b);
      public double sub(double a,double b);
      public double mul(double a,double b);
      public double div(double a,double b);
      }
      package com.alibaba.wlq.invoke;
      
      public class MeticImp implements Metic{
      
      	@Override
      public double add(double a, double b) {
      double result = a + b;
      System.out.println(result);
      return result;
      } @Override
      public double sub(double a, double b) {
      double result = a - b;
      System.out.println(result);
      return result;
      } @Override
      public double mul(double a, double b) {
      double result = a * b;
      System.out.println(result);
      return result;
      } @Override
      public double div(double a, double b) {
      double result = a / b;
      System.out.println(result);
      return result;
      } }
    3. 创建切面类

      package com.alibaba.wlq.invoke;
      
      import java.util.Arrays;
      
      import org.aspectj.lang.JoinPoint;
      
      public class Invoke {
      public void before(JoinPoint joinPoint) {
      Object[] args = joinPoint.getArgs();
      String name = joinPoint.getSignature().getName();
      System.out.println("alibaba------>the method "+name+" begin with "+Arrays.asList(args));
      }
      public void after(JoinPoint joinPoint) {
      String name = joinPoint.getSignature().getName();
      System.out.println("alibaba------>the method "+name+" end result:");
      }
      public void afterreturn(Object result) {
      System.out.println("result:========"+result);
      }
      }
    4. 配置文件

      <?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-4.2.xsd"> <!-- 定义被通知的程序类 -->
      <bean id="metic" class="com.alibaba.wlq.invoke.MeticImp"></bean> <!-- 定义切面类的Bean -->
      <bean id="invoke" class="com.alibaba.wlq.invoke.Invoke"></bean> <!-- 配置切面 -->
      <aop:config>
      <!-- 定义表达式、切点 -->
      <aop:pointcut expression="execution(* com.alibaba.wlq.invoke.*.*(..))" id="point"/>
      <!-- 定义切面 -->
      <aop:aspect ref="invoke">
      <!-- 定义前置通知 -->
      <aop:before method="before" pointcut-ref="point" />
      <!-- 定义后置通知 -->
      <aop:after method="after" pointcut-ref="point"/>
      <!-- 定义返回通知returning属性值得名称要和方法中的参数名称一致 -->
      <aop:after-returning method="afterreturn" pointcut-ref="point" returning="result"/>
      </aop:aspect>
      </aop:config>
      </beans>
    5. 测试类

      package Test;
      
      import org.springframework.context.ApplicationContext;
      import org.springframework.context.support.ClassPathXmlApplicationContext; import com.alibaba.wlq.invoke.Metic; public class Test1 {
      public static void main(String[] args) {
      ApplicationContext app = new ClassPathXmlApplicationContext("app.xml");
      Metic arith = (Metic) app.getBean("metic");
      arith.add(15, 10);
      }
      }
    6. 输出结果

      alibaba------>the method add begin with [15.0, 10.0]
      25.0
      alibaba------>the method add end result:
      result:========25.0

AOP面向切面编程(使用注解和使用配置文件)的更多相关文章

  1. Spring AOP 面向切面编程相关注解

    Aspect Oriented Programming 面向切面编程   在Spring中使用这些面向切面相关的注解可以结合使用aspectJ,aspectJ是专门搞动态代理技术的,所以比较专业.   ...

  2. Spring -07 -AOP [面向切面编程] - 使用注解@+ AspectJ 方式实现环绕/前/后等通知 -超简洁 --静态代理/动态代理{JDK/cglib}

    1.spring 不会自动去寻找注解,必须告诉 spring 哪些包下的类中可能有注解;使用注解来取代配置文件.1.1 引入xmlns:context ,指定扫描范围 <context:comp ...

  3. spring:AOP面向切面编程(注解)03

    使用注解写aop时最好使用环绕通知写 切面类: /** * 用于记录日志的工具类,它里面提供了公共的代码 */ @Component("logger") @Aspect //表示当 ...

  4. AOP面向切面编程的四种实现

     一.AOP(面向切面编程)的四种实现分别为最原始的经典AOP.代理工厂bean(ProxyFacteryBean)和默认自动代理DefaultAdvisorAutoProxyCreator以及Bea ...

  5. Spring:AOP面向切面编程

    AOP主要实现的目的是针对业务处理过程中的切面进行提取,它所面对的是处理过程中的某个步骤或阶段,以获得逻辑过程中各部分之间低耦合性的隔离效果. AOP是软件开发思想阶段性的产物,我们比较熟悉面向过程O ...

  6. Spring Boot2(六):使用Spring Boot整合AOP面向切面编程

    一.前言 众所周知,spring最核心的两个功能是aop和ioc,即面向切面和控制反转.本文会讲一讲SpringBoot如何使用AOP实现面向切面的过程原理. 二.何为aop ​ aop全称Aspec ...

  7. 浅谈Spring AOP 面向切面编程 最通俗易懂的画图理解AOP、AOP通知执行顺序~

    简介 我们都知道,Spring 框架作为后端主流框架之一,最有特点的三部分就是IOC控制反转.依赖注入.以及AOP切面.当然AOP作为一个Spring 的重要组成模块,当然IOC是不依赖于Spring ...

  8. 谈一谈AOP面向切面编程

    AOP是什么 : AOP面向切面编程他是一种编程思想,是指在程序运行期间,将某段代码动态的切入到指定方法的指定位置,将这种编程方式称为面向切面编程 AOP使用场景 : 日志 事务 使用AOP的好处是: ...

  9. 基于SpringBoot AOP面向切面编程实现Redis分布式锁

    基于SpringBoot AOP面向切面编程实现Redis分布式锁 基于SpringBoot AOP面向切面编程实现Redis分布式锁 基于SpringBoot AOP面向切面编程实现Redis分布式 ...

  10. 极简SpringBoot指南-Chapter05-SpringBoot中的AOP面向切面编程简介

    仓库地址 w4ngzhen/springboot-simple-guide: This is a project that guides SpringBoot users to get started ...

随机推荐

  1. [打基础]luogu2181对角线——计数原理

    啦啦啦我ysw又回来啦!之后大概会准备打acm,暑假尽量复习复习,因为已经快两年没碰oi了,最多也就高三noip前学弟学妹出题讲题,所以从这一篇blog开始大概会有一系列"打基础" ...

  2. Eureka系列(三)获取服务Client端具体实现

    获取服务Client 端流程   我们先看下面这张图片,这张图片简单描述了下我们Client是如何获取到Server已续约实例信息的流程:  从图片中我们可以知晓大致流程就是Client会自己开启一个 ...

  3. 多任务-python实现-进程,协程,线程总结(2.1.16)

    @ 目录 1.类比 2.总结 关于作者 1.类比 一个生产玩具的工厂: 一个生产线成为一个进程,一个生产线有多个工人,所以工人为线程 单进程-多线程:一条生产线,多个工人 多进程-多线程:多条生产线, ...

  4. python 字符串拼接 + 与 join 的区别

    本文的文字及图片来源于网络,仅供学习.交流使用,不具有任何商业用途,如有问题请及时联系我们以作处理 python在进行字符串的拼接时,一般有两种方法,一种是使用+直接相加,另一种是使用join a = ...

  5. BST和DST简单的matlab程序(图的广度和深度遍历)

    图的广度和深度遍历,具体内容教材有 clc;clear all;close all; %初始化邻接压缩表compressTable=[1 2;1 3;1 4;2 4;2 5;3 6;4 6;4 7]; ...

  6. 机器学习-决策树之ID3算法

    概述 决策树(Decision Tree)是一种非参数的有监督学习方法,它是一种树形结构,所以叫决策树.它能够从一系列有特征和标签的数据中总结出决策规则,并用树状图的结构来呈现这些规则,以解决分类和回 ...

  7. python列表(九)元组

    元组 元组是不可变序列,元组一旦创建,用任何方法都不可以修改其元素. 元组的偶有元素是放在一对圆括号"()"中 1.元组创建与删除 使用"="讲一个元组赋值给变 ...

  8. spring boot编程思想(核心篇) pdf 下载 it教程

    资料简介:本书是<Spring Boot 编程思想>的核心篇,开篇总览Spring Boot核心特性,接着讨论自动装配(Auto-Configuration)与SpringApplicat ...

  9. git文件锁定不更新和忽略

    git文件的忽略 新建未提交的文件直接添加.gitignore 提交之后的文件已被git追踪 这时需要清除git缓存 忽略文件 git rm --cached ./src/main/resources ...

  10. PIX

    [开启]后,如图: [新建]:如图中设定: Program: 你要准备监测的应用程序路径 [点击]:Start Experiment 如图,会出现一个新窗口(你运行的应用程序窗口) [点击F12](确 ...