AOP,(Aspect Oriented Programming),即面向切面编程,可以说是OOP(Object Oriented Programming,面向对象编程)的补充和完善。
OOP引入封装、继承、多态等概念来建立一种对象层次结构,用于模拟公共行为的一个集合。不过OOP允许开发者定义纵向的关系,但并不适合定义横向的关系,例如日志功能。【日志代码往往横向地散布在所有对象层次中,而与它对应的对象的核心功能毫无关系,对于其他类型的代码,如安全性、异常处理和透明的持续性也都是如此,这种散布在各处的无关的代码被称为横切(cross cutting),在OOP设计中,它导致了大量代码的重复,而不利于各个模块的重用。】
AOP核心概念
1、横切关注点
对哪些方法进行拦截,拦截后怎么处理,这些关注点称之为横切关注点
2、切面(aspect)
类是对物体特征的抽象,切面就是对横切关注点的抽象
3、连接点(joinpoint)
被拦截到的点,因为Spring只支持方法类型的连接点,所以在Spring中连接点指的就是被拦截到的方法,实际上连接点还可以是字段或者构造器
4、切入点(pointcut)
对连接点进行拦截的定义
5、通知(advice)
所谓通知指的就是指拦截到连接点之后要执行的代码,通知分为前置、后置、异常、最终、环绕通知五类
6、目标对象
代理的目标对象
7、织入(weave)
将切面应用到目标对象并导致代理对象创建的过程
8、引入(introduction)
在不修改代码的前提下,引入可以在运行期为类动态地添加一些方法或字段
Spring对AOP的支持
Spring中AOP代理由Spring的IOC容器负责生成、管理,其依赖关系也由IOC容器负责管理。
因此,AOP代理可以直接使用容器中的其它bean实例作为目标,这种关系可由IOC容器的依赖注入提供。Spring创建代理的规则为:
1、默认使用Java动态代理来创建AOP代理,这样就可以为任何接口实例创建代理了
2、当需要代理的类不是代理接口的时候,Spring会切换为使用CGLIB代理,也可强制使用CGLIB
AOP编程其实是很简单的事情,纵观AOP编程,程序员只需要参与三个部分:
1、定义普通业务组件
2、定义切入点,一个切入点可能横切多个业务组件
3、定义增强处理,增强处理就是在AOP框架为普通业务组件织入的处理动作
所以进行AOP编程的关键就是定义切入点和定义增强处理,一旦定义了合适的切入点和增强处理,AOP框架将自动生成AOP代理,即:代理对象的方法=增强处理+被代理对象的方法。
下面给出一个Spring AOP的.xml文件模板,名字叫做aop.xml,之后的内容都在aop.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"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-4.2.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-4.2.xsd">
</beans>
基于Spring的AOP简单实现
注意一下,在讲解之前,说明一点:使用Spring AOP,要成功运行起代码,只用Spring提供给开发者的jar包是不够的,请额外上网下载两个jar包:
1、aopalliance.jar(http://www.manyjar.com/search/aopalliance.html)
2、aspectjweaver.jar(http://www.manyjar.com/search/aspectjweaver.html)
开始讲解【所需文件:三个实体类(Helloworld_TimeHandler.java/Helloworlda.java/Helloworldb.java)和一个类接口(Helloworld.java),外加一个测试类(HelloworldTest.java) 】(1)用Spring AOP的XML实现方式,先定义一个接口:
package com.spring;
public interface Helloworld {
void printHelloWorld();
void doPrint();
}
package com.spring;
public class Helloworlda implements Helloworld {
@Override
public void printHelloWorld() {
System.out.println("Enter HelloWorldImpl1.printHelloWorld()");
}
@Override
public void doPrint() {
System.out.println("Enter HelloWorldImpl1.doPrint()");
return ;
}
}
package com.spring;
public class Helloworldb implements Helloworld{
public void printHelloWorld()
{
System.out.println("Enter HelloWorldImpl2.printHelloWorld()");
}
public void doPrint()
{
System.out.println("Enter HelloWorldImpl2.doPrint()");
return ;
}
}
(3)横切关注点,这里是打印时间:
package com.spring;
public class Helloworld_TimeHandler {
public void printTime() {
System.out.println("CurrentTime = " + System.currentTimeMillis());
}
}
(4)有这三个类就可以实现一个简单的Spring AOP了,看一下aop.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"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-4.2.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-4.2.xsd">
<bean id="helloworld1" class="com.spring.Helloworld1"></bean>
<bean id="helloworld2" class="com.spring.Helloworld2"></bean>
<bean id="timeHander" class="com.spring.Helloworld_TimeHandler"></bean>
<aop:config>
<aop:pointcut id="addAllMethod" expression="execution(* com.spring.*.*(..))"></aop:pointcut>
<aop:aspect id="time" ref="timeHander">
<aop:before method="printTime" pointcut-ref="addAllMethod" />
<aop:after method="printTime" pointcut-ref="addAllMethod" />
</aop:aspect>
</aop:config>
</beans>
(5)写一个单元测试进行调用:
package com.spring;
import org.junit.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class HelloworldTest {
@Test
public void test() {
@SuppressWarnings("resource")
ApplicationContext content = new ClassPathXmlApplicationContext("aop.xml");
Helloworld bean1 = (Helloworld)content.getBean("Helloworlda");
Helloworld bean2 = (Helloworld)content.getBean("Helloworldb");
System.out.println("***=================");
bean1.doPrint();
bean1.printHelloWorld();
bean2.doPrint();
bean2.printHelloWorld();
}
}
运行效果(省略spring-framework打印信息):
***=================
2017-12-24 21:55:11,626 [org.springframework.beans.factory.support.DefaultListableBeanFactory]-[DEBUG] Returning cached instance of singleton bean 'timeHander'
CurrentTime = 1514123711626
Enter HelloWorldImpl1.doPrint()
2017-12-24 21:55:11,626 [org.springframework.beans.factory.support.DefaultListableBeanFactory]-[DEBUG] Returning cached instance of singleton bean 'timeHander'
CurrentTime = 1514123711626
2017-12-24 21:55:11,626 [org.springframework.beans.factory.support.DefaultListableBeanFactory]-[DEBUG] Returning cached instance of singleton bean 'timeHander'
CurrentTime = 1514123711626
Enter HelloWorldImpl1.printHelloWorld()
2017-12-24 21:55:11,626 [org.springframework.beans.factory.support.DefaultListableBeanFactory]-[DEBUG] Returning cached instance of singleton bean 'timeHander'
CurrentTime = 1514123711627
2017-12-24 21:55:11,627 [org.springframework.beans.factory.support.DefaultListableBeanFactory]-[DEBUG] Returning cached instance of singleton bean 'timeHander'
CurrentTime = 1514123711627
Enter HelloWorldImpl2.doPrint()
2017-12-24 21:55:11,627 [org.springframework.beans.factory.support.DefaultListableBeanFactory]-[DEBUG] Returning cached instance of singleton bean 'timeHander'
CurrentTime = 1514123711627
2017-12-24 21:55:11,628 [org.springframework.beans.factory.support.DefaultListableBeanFactory]-[DEBUG] Returning cached instance of singleton bean 'timeHander'
CurrentTime = 1514123711628
Enter HelloWorldImpl2.printHelloWorld()
2017-12-24 21:55:11,628 [org.springframework.beans.factory.support.DefaultListableBeanFactory]-[DEBUG] Returning cached instance of singleton bean 'timeHander'
CurrentTime = 1514123711628
综上,就是一个Spring AOP Demo。