AOP(面向方面编程),也可称为面向切面编程,是一种编程范式,提供从另一个角度来考虑程序结构从而完善面向对象编程(OOP)。

  在进行 OOP 开发时,都是基于对组件(比如类)进行开发,然后对组件进行组合,OOP 最大问题就是无法解耦组件进行开发,比如我们上边举例,而 AOP 就是为了克服这个问题而出现的,它来进行这种耦合的分离。AOP 为开发者提供一种进行横切关注点(比如日志关注点)分离并织入的机制,把横切关注点分离,然后通过某种技术织入到系统中,从而无耦合的完成了我们的功能。

1 AOP概述

  AOP(Aspect-Oriented Programming, 面向切面编程): 是一种新的方法论, 是对传统 OOP(Object-Oriented Programming, 面向对象编程) 的补充。AOP 的主要编程对象是切面(aspect), 而切面模块化横切关注点。在应用 AOP 编程时, 仍然需要定义公共功能, 但可以明确的定义这个功能在哪里, 以什么方式应用, 并且不必修改受影响的类. 这样一来横切关注点就被模块化到特殊的对象(切面)里。AOP更多概念

AOP 的好处:

  • 每个事物逻辑位于一个位置, 代码不分散, 便于维护和升级
  • 业务模块更简洁, 只包含核心业务代码

2 Spring AOP

  在 Spring2.0 以上版本中,可以使用基于 AspectJ 注解或基于 XML 配置的 AOP,AspectJava是Java社区中最完整最流程的AOP框架。

2.1 在Spring中使用AspectJava注解支持

  要在 Spring 应用中使用 AspectJ 注解, 必须在 classpath 下包含 AspectJ 类库: aopalliance.jar、aspectj.weaver.jar 和 spring-aspects.jar。然后将 aop Schema 添加到 <beans> 根元素中。在 Spring IOC 容器中启用 AspectJ 注解支持,只要在 Bean 配置文件中定义一个空的 XML 元素 <aop:aspectj-autoproxy>即可,当 Spring IOC 容器侦测到 Bean 配置文件中的 <aop:aspectj-autoproxy> 元素时, 会自动为与 AspectJ 切面匹配的 Bean 创建代理。

  在AspectJ注解中,切面只是一个带有@Aspect注解的Java类,通知是标注有某种注解的简单Java方法,AspectJ支持以下5种类型的通知注解:

  • @Before: 前置通知, 在方法执行之前执行
  • @After: 后置通知, 在方法执行之后执行
  • @AfterRunning: 返回通知, 在方法返回结果之后执行
  • @AfterThrowing: 异常通知, 在方法抛出异常之后
  • @Around: 环绕通知, 围绕着方法执行

2.2 利用方法签名编写 AspectJ 切入点表达式

  最典型的切入点表达式时根据方法的签名来匹配各种方法:

  • execution(public void com.aop.HelloImpl.hi()):匹配HelloImpl中返回值为void且无参数的hi方法
  • execution(public void com.aop.HelloImpl.*()):匹配HelloImpl中返回值为void且无参数的所有public方法
  • execution(public void com.aop.HelloImpl.*(..)):匹配HelloImpl中返回值为void的所有public方法
  • execution(public * com.aop.HelloImpl.*(..)):匹配HelloImpl中所有public方法

  在AspectJ中,切入点表达式可以使用操作符&&、||、!结合起来。

// 声明该方法为前置通知
@Before("execution(public void com.aop.HelloImpl.hi()) || execution(public void com.aop.HelloImpl.hihi(String))")
public void beforeMethod(JoinPoint point) {
String methodName = point.getSignature().getName();
System.out.println("HelloAspect beforeMethod : " + methodName);
}

2.3 使用AOP程序示例,使用了全部的5种通知

  首先定义一个Hello接口,代码如下:

public interface Hello {
public void hi();
}

  然后定义一个Hello实现类HelloImpl,代码如下:

@Component
public class HelloImpl implements Hello {
@Override
public void hi() {
System.out.println("HelloImp hi()...");
}
}

  然后定义一个Hello的切面类HelloAspect,然后如下所示,注意:Hello接口、HelloImpl类、HelloAspect类都是在com.aop包下的。

@Aspect
@Component
public class HelloAspect {   // 声明该方法为前置通知
  @Before("execution(public void com.aop.HelloImpl.hi()) || execution(public void com.aop.HelloImpl.hihi(String))")
  public void beforeMethod(JoinPoint point) {
  String methodName = point.getSignature().getName();
  System.out.println("HelloAspect beforeMethod : " + methodName);
  } // 声明该方法为后置通知,无论该方法是否发生异常
@After("execution(public void com.aop.HelloImpl.*())")
public void endMethod(JoinPoint point) {
String methodName = point.getSignature().getName();
System.out.println("HelloAspect afterMethod : " + methodName);
} // 返回通知,正常返回时的通知,不包括异常,可以访问到方法的方绘制
@AfterReturning(value = "execution(public void com.aop.HelloImpl.*())", returning = "result")
public void afterReturning(JoinPoint point, Object result) {
String methodName = point.getSignature().getName();
System.out.println("HelloAspect afterReturning : " + methodName + ", result: " + result);
} // 异常通知
@AfterThrowing(value = "execution(public void com.aop.HelloImpl.*())", throwing = "ex")
public void afterThrowing(JoinPoint point) {
String methodName = point.getSignature().getName();
System.out.println("HelloAspect afterReturning : " + methodName);
} /**
* 环绕通知需携带 ProceedingJoinPoint 类型的参数。
* 环绕通知类似于动态代理的全过程, ProceedingJoinPoint 类型的参数可以决定是否执行目标方法。
* 环绕通知必须有返回值,且返回值是目标方法的返回值
*/
@Around("execution(public void com.aop.HelloImpl.*())")
public Object aroundMethod(ProceedingJoinPoint point) {
Object result = null; // 环绕通知(前通知)
System.out.println("HelloAspect aroundMethod start...");
try {
// 前置通知
result = point.proceed(); // 目标方法执行
} catch (Throwable throwable) {
// 异常通知
throwable.printStackTrace();
}
// 环绕通知(后通知)
System.out.println("HelloAspect aroundMethod end...");
// 后置通知
// 返回通知 return result;
}
}

  配置aopContext.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: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.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd"> <!-- 自动扫描 -->
<context:component-scan base-package="com.aop"/> <!-- 使用AspjectJ自动生成代理对象 -->
<aop:aspectj-autoproxy></aop:aspectj-autoproxy> </beans>

  测试类AopTest类:

public class AopTest {
public static void main(String[] args) {
ApplicationContext context = new ClassPathXmlApplicationContext("aopContext.xml"); Hello hello = context.getBean(Hello.class); hello.hi();
}
}

  最后的输出结果为:

  现在问题来了,各种通知的顺序是如何呢?其实从输出结果中也可以看出来。同一个类中的各种通知执行顺序是:

Around之前通知 >= Before通知 >= 目标方法执行 >= Around之后通知 >= After通知 >= AfterReturn通知

2.4 指定切面的优先级

  在同一个连接点上应用不止一个切面时, 除非明确指定, 否则它们的优先级是不确定的。切面的优先级可以通过实现 Ordered 接口或利用 @Order 注解指定。实现 Ordered 接口, getOrder() 方法的返回值越小, 优先级越高.若使用 @Order 注解, 序号出现在注解中。

@Aspect
@Order(0)
@Component
public class HelloAspect2 { } @Aspect
@Order(1)
@Component
public class HelloAspect { }

2.5 重用切入点定义

  在编写 AspectJ 切面时, 可以直接在通知注解中书写切入点表达式. 但同一个切点表达式可能会在多个通知中重复出现。在 AspectJ 切面中, 可以通过 @Pointcut 注解将一个切入点声明成简单的方法. 切入点的方法体通常是空的, 因为将切入点定义与应用程序逻辑混在一起是不合理的。切入点方法的访问控制符同时也控制着这个切入点的可见性. 如果切入点要在多个切面中共用, 最好将它们集中在一个公共的类中. 在这种情况下, 它们必须被声明为 public. 在引入这个切入点时, 必须将类名也包括在内. 如果类没有与这个切面放在同一个包中, 还必须包含包名。其他通知可以通过方法名称引入该切入点。

@Aspect
@Component
public class HelloAspect { @Pointcut("execution(public void com.aop.HelloImpl.hi())")
private void operate() { } // 声明该方法为前置通知
@Before("operate()")
public void beforeMethod(JoinPoint point) {
String methodName = point.getSignature().getName();
System.out.println("HelloAspect beforeMethod : " + methodName);
}
}

3 基于XML的配置声明切面

  除了使用 AspectJ 注解声明切面, Spring 也支持在 Bean 配置文件中声明切面. 这种声明是通过 aop schema 中的 XML 元素完成的。正常情况下, 基于注解的声明要优先于基于 XML 的声明. 通过 AspectJ 注解, 切面可以与 AspectJ 兼容, 而基于 XML 的配置则是 Spring 专有的. 由于 AspectJ 得到越来越多的 AOP 框架支持, 所以以注解风格编写的切面将会有更多重用的机会。

3.1 声明切面

  XML中声明切面时,需要在<beans>根元素中导入aop schema,在Bean配置文件中,所有的Spring AOP配置都必须定义在<aop:config>元素内部,对于每个切面来说,都要创建一个<aop:aspect>元素来为具体的切面实现引用后端Bean实例。

<aop:config>
<aop:aspect ref="helloAspect">
<aop:before pointcut="execution(public void com.aop.HelloImpl.*())" method="beforeMethod"/>
</aop:aspect>
<aop:aspect ref="helloAspect2">
<aop:before pointcut="execution(public void com.aop.HelloImpl.*())" method="beforeMethod"/>
</aop:aspect>
</aop:config>

3.2 声明切入点和通知

  切入点使用<aop:pointcut>元素声明,切入点必须定义在<aop:sapect>元素下,或者直接定义在<aop:config>元素下。

  • 定义在 <aop:aspect> 元素下: 只对当前切面有效
  • 定义在 <aop:config> 元素下: 对所有切面都有效

  通知元素使用<pointcut-ref>来引用切入点,或直接把<pointcut>嵌入到切入点表达式中,method属性指定切面类中通知方法的名称。

<aop:config>
<aop:pointcut id="pointcut" expression="execution(public void com.aop.HelloImpl.*())"/>
<aop:aspect ref="helloAspect">
<aop:before pointcut-ref="pointcut" method="beforeMethod"/>
</aop:aspect>
<aop:aspect ref="helloAspect2">
<aop:before pointcut-ref="pointcut" method="beforeMethod"/>
</aop:aspect>
</aop:config>

参考资料:

  1、Spring学习之第一个AOP程序

  2、Spring4.0从入门到精通视频教程

Spring学习之AOP总结帖的更多相关文章

  1. Spring学习之AOP的实现方式

    Spring学习之AOP的三种实现方式 一.介绍AOP 在软件业,AOP为Aspect Oriented Programming的缩写,意为:面向切面编程,通过预编译方式和运行期间动态代理实现程序功能 ...

  2. spring学习(二) ———— AOP之AspectJ框架的使用

    前面讲解了spring的特性之一,IOC(控制反转),因为有了IOC,所以我们都不需要自己new对象了,想要什么,spring就给什么.而今天要学习spring的第二个重点,AOP.一篇讲解不完,所以 ...

  3. Spring学习之AOP

    Spring-AOP(Aspect-orented programming) 在业务流程中插入与业务无关的逻辑,这样的逻辑称为Cross-cutting concerns,将Crossing-cutt ...

  4. Spring学习之Aop的各种增强方法

    AspectJ允许使用注解用于定义切面.切入点和增强处理,而Spring框架则可以识别并根据这些注解来生成AOP代理.Spring只是使用了和AspectJ 5一样的注解,但并没有使用AspectJ的 ...

  5. Spring学习之Aop的基本概念

    转自:http://my.oschina.net/itblog/blog/209067 AOP的基本概念 AOP从运行的角度考虑程序的流程,提取业务处理过程的切面.AOP面向的是程序运行中的各个步骤, ...

  6. Spring学习之AOP与事务

      一.概述 在软件业,AOP为Aspect Oriented Programming的缩写,意为:面向切面编程,通过预编译方式和运行期动态代理实现程序功能的统一维护的一种技术.AOP是OOP的延续, ...

  7. spring学习笔记-AOP

    1.aop:aspect oriented programming 面向切面编程 2.aop在spring中的作用:   提供声明式服务(声明式事务) 允许用户实现自定义切面 3.aop:在不改变原有 ...

  8. Spring 学习之AOP

    1. 走进面前切面编程 编程范式: 面向过程编程,c语言: 面向对象编程:c++,java,c#; 函数式编程: 事件驱动编程: 面向切面编程: AOP是一种编程范式,不是编程语言:解决特定问题,不能 ...

  9. Spring 学习二-----AOP的原理与简单实践

    一.Spring  AOP的原理 AOP全名Aspect-Oriented Programming,中文直译为面向切面(方面)编程.何为切面,就比如说我们系统中的权限管理,日志,事务等我们都可以将其看 ...

随机推荐

  1. ImageLightbox.js – 响应式的图片 Lightbox 插件

    ImageLightbox.js 是一款很简洁的用于显示图片灯箱效果(Lightbox)的插件,没有字幕,导航按钮或默认背景.如果默认功能不够用的话,你可以很容易地自定义 JavaScript 函数扩 ...

  2. 【初探移动前端开发05】jQuery Mobile (下)

    前言 继续我们移动端的学习,今天到了List相关了. 本文例子请使用手机查看 List列表 在移动设备平台下,由于移动设备屏幕比较小,我们又是用手在上面点击的触屏方式,传统的列表模式在手机上就不太友好 ...

  3. 【追寻javascript高手之路05】理解事件流

    前言 新的一天又开始了,我们对今天对未来抱有很大期待,所以开始我们今天的学习吧,在此之前来点题外话,还是爱好问题. 周三的面试虽然失败,但是也是很有启迪的,比如之前我就从来没有想过爱好问题,我发现我的 ...

  4. SAP中禁止特定用户更改密码

    在SAP管理中,有时一些账号因为是提供给大家作查询用的,受密码强度策略限制,密码不能为空.故密码设为通用后在公司内发布,为避免有些用户更改后造成其他用户无法登陆,我们可在使用TC-SU01,在登录数据 ...

  5. SharePoint 判断用户是否在字段"人员和组"里面

    两个自己平时写的方法,记录下来,方便以后查找使用: 1.判断用户是否在字段人员和组里面: public static bool IsUserInFiled(int UserID, string Lis ...

  6. 我的Android第一章:Android环境搭建

    今天是Android第一天的学习,对于学习任何一门课程时我们都要对该课程要有基本的了解和认识,了解该课程学点什么内容,学了这门知识我门能够做些什么,这也是对于我们这些刚入门的学习人员来说是一个必须要弄 ...

  7. Android Studio教程--Android项目分享到Github

    首先下载安装git 下载地址:https://git-scm.com/ 打开AS,并设置如下: 到github上面注册一个帐号 运行--cmd cd C:\Program Files\Git\bin ...

  8. 【Android】友盟的自动更新组件

    前言 又好又专业的服务能帮开发者省很多时间.一开始做项目也准备自己来统计数据.自己做自动更新,随着使用友盟服务的时间增加,渐渐放弃了这种想法,转而研究如何更充分的使用,这里分享一下使用自动更新组件的心 ...

  9. C#复习⑧

    C#复习⑧ 2016年6月22日 13:50 Main Attribute & Threads 属性与线程 1.Conditional Attribute 条件属性 #define debug ...

  10. 记录一些在用wcf的过程中走过的泥巴路 【第一篇】

    自从转移战场之后,比以前忙多了,博客也没能及时跟上,原本准备继续mvc系列,但是在那边技术比较陈旧还没能用得上,话说有3年没接触这玩意了,东西也 都忘了差不多了,既然再次接触,我也就继续温习温习,记录 ...