AOP详解
前言
AOP,即面向切面编程,可以说是OOP(面向对象编程)的补充和完善,OOP引入封装\继承\多态等概念来建立一种对象层次结构,用于模拟公共行为的一个集合,不过OOP允许开发者定义纵向的关系,但并不适合定义横向的关系,例如:日志功能。日志代码往往横向散布在所有对象层次中,而与它相对应对象的核心功能毫无关系。对于其他类型的代码,如安全性、异常处理和透明的持续性也亦是如此。这种散步在各处的无关的代码被称为横切(cross cutting)在OOP的设计中,它导致了大量代码的重复,增强了代码之间的耦合度,不利于各个模块的重用。
AOP技术恰恰相反,它利用一种称为"横切"的技术,剖解开封装的对象内部,并将那些影响了多个类的公共行为封装到一个可以重用的模块,并将其称之为"Aspect"即"切面",之所谓"切面",简单说就是那些与业务无关,却为业务模块所共用的逻辑等封装起来,便于减少开发过程中代码的重复,降低模块之间的耦合度,并有利于未来的可操作性和可维护性.
使用横切技术,AOP把软件系统分为两个部分:核心关注点和横切关注点,业务处理的主要流程是核心关注点,与之关系不大的部分是横切关注点.横切关注点的一个特点是,他们经常发生在核心关注点的多处,而各处基本相似,比如权限认证\日志\事务.AOP的作用在于分离系统中的各个关注点,将核心关注点和横切关注点分离开
AOP核心概念
- 横切关注点
对哪些方法进行拦截,拦截后怎么处理,这些关注点称之为横切关注点 - 切面(Aspect)
类是对物体特征的抽象,切面就是对横切关注点的抽象 - 连接点(joinPoint)
被拦截到的店,因为Spring只支持方法类型的连接点,所以在Spring中连接点指的就是被拦截到的方法,实际上连接点还可以是字段甚至是构造器 - 切入点(pointCut)
对连接点进行拦截的定义 - 通知(advice)
指拦截到连接点后要执行的逻辑,通知分为:前置/后置/异常/最终/环绕五大类 - 目标对象
代理的目标对象 - 织入(weave)
将切面应用到目标对象并导致代理对象创建的过程 - 引入(introduction)
在不修改代码的前提下,引入可以再运行期类类动态地添加一些方法或者是字段
Spring中对AOP的支持
Spring中AOP代理由Spring的IOC容器负责生成、管理,其依赖关系也由IOC容器负责管理,因此AOP代理可以直接使用Spring中IOC容器中的其他Bean实例作为目标,这种关系可由IOC容器的依赖注入提供
值得注意的是
- 默认使用Java动态代理来创建AOP代理(JDK代理模式),这样可以为任何接口实例创建代理
- 当需要代理的类不是代理接口的时候,Spring会切换为使用CGLIB代理,也可以强制使用CGLIB
AOP编程中程序猿需要注意的三部分
- 定义普通业务组件
- 定义切入点(pointCut),一个切入点都可能横切多个业务组件
- 定义增强处理,增强处理就是在AOP框架为普通业务组件织入(weave)的处理操作
所以进行AOP编程的关键就是定义切入点和定义增强处理,一旦定义了合适的切入点和增强处理,AOP框架将自动生成AOP代理,那么我们可以形象的用几何模型来描述上面的话:
代理对象的方法 = 增强处理 + 被代理的对象
下面给出一个Spring 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官方所提供的jar包外,我们还需要注意引入以下两个jar包:
- aopalliance.jar
- aspectjweaver.jar
开始讲解用Spring AOP的XML实现方式,先定义一个接口
public interface HelloWorld{
void printHellWorld();
void doPrint();
}
再定义两个接口的实现类
public class HelloWorldImplA HelloWorld{
public void printHelloWorld(){
System.out.println("Enter HelloWorldImplA.printHelloWorld()");
}
public void doPrint(){
System.out.println("Enter HelloWorldImplA.doPrint()");
return ;
}
}
public class HelloWorldImplB HelloWorld{
public void printHelloWorld(){
System.out.println("Enter HelloWorldImplB.printHelloWorld()");
}
public void doPrint(){
System.out.println("Enter HelloWorldImplB.doPrint()");
return ;
}
}
横切关注点,这里打印时间:
public class TimeHandler{
public void printTime(){
System.out.println()
}
}
有这三个类就可以实现一个简单的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="helloWorldImpl1" class="com.xrq.aop.HelloWorldImplA" />
<bean id="helloWorldImpl2" class="com.xrq.aop.HelloWorldImplB" />
<bean id="timeHandler" class="com.xrq.aop.TimeHandler" />
<aop:config>
<aop:aspect id="time" ref="timeHandler">
<aop:pointcut id="addAllMethod" expression="execution(* com.xrq.aop.HelloWorld.*(..))" />
<aop:before method="printTime" pointcut-ref="addAllMethod" />
<aop:after method="printTime" pointcut-ref="addAllMethod" />
</aop:aspect>
</aop:config>
</beans>
public static void main(String[] args)
{
ApplicationContext ctx = new ClassPathXmlApplicationContext("aop.xml");
HelloWorld hw1 = (HelloWorld)ctx.getBean("helloWorldImpl1");
HelloWorld hw2 = (HelloWorld)ctx.getBean("helloWorldImpl2");
hw1.printHelloWorld();
System.out.println();
hw1.doPrint();
System.out.println();
hw2.printHelloWorld();
System.out.println();
hw2.doPrint();
}
强制使用CGLIB生成代理
前面说过Spring使用动态代理或是CGLIB生成代理是有规则的,高版本的Spring会自动选择是使用动态代理还是CGLIB生成代理内容,当然我们也可以强制使用CGLIB生成代理,那就是<aop:config>
里面有一个"proxy-target-class"属性,这个属性值如果被设置为true,那么基于类的代理将起作用,如果proxy-target-class被设置为false或者这个属性被省略,那么基于接口的代理将起作用
使用AspectJ框架(注解方式)实现aop
使用注解的话,很简单,就是把xml方式用注解给替代,其中也就做6件事
1. @Component将切面类配置给spring,相当于
<bean id="" class="切面类全限定类名">
2. 将切面类申明为切面 @Aspect,@Component
@Aspect
@Component
public class MyAspect{
}
3. 将目标类配置给spring @Component,如何不编写名称的话,那么要获取该对象,则使用userServiceImpl进行获取。
@Component
public class UserServiceImpl{
public void add(){
System.out.println("aspectJ add");
}
}
4. 声明目标类切入点范围
- 方法必须private,没有返回值,没有参数
- 之后使用将其当成方法调用,例如
@After("myPointcut()")
@Pointcut("execution(* com.xxx.example.annotation.*.*(..))")
public class MyAspect{
@Pointcut("execution(* com.xxx.example.annotation.*.*(..))")
private void myPointcut(){}
}
5. 编写相应的通知
@Before 前置通知
@AfterReturning 后置通知,可以获得返回值,必须在注解中确定返回值参数名称
@AfterThrowing 抛出异常,可以获得具体异常信息,必须在注解确定第二个参数名称
@Around 环绕通知
@After 最终通知
6. 在xml中扫描注解和启用AOP
<context:component-scan base-package="需要扫描的包路径" />
<aop:aspectj-autoproxy></aop:aspectj-autoproxy>
本文大部分引用博客园->一杯凉茶の博文
地址:https://www.cnblogs.com/whgk/p/6627187.html
本文版权归属:极束の梦想
转载文章时,请保留本文的版权内容。
作者:Seale
同时也欢迎各位大大交换友链。