一、AOP
AOP(Aspect Oriented Programming),即面向切面编程,可以说是OOP(Object Oriented Programming,面向对象编程)的补充和完善。
A、 OOP
OOP引入封装、继承、多态等概念来建立一种对象层次结构,用于模拟公共行为的一个集合。
OOP允许开发者定义纵向的关系,但并不适合定义横向的关系,例如日志功能。日志代码往往横向地散布在所有对象层次中,而与它对应的对象的核心功能毫无关系对于其他类型的代码,如安全性、异常处理和透明的持续性也都是如此,这种散布在各处的无关的代码被称为横切(cross cutting),在OOP设计中,它导致了大量代码的重复,而不利于各个模块的重用。
B、 AOP
利用一种称为"横切"的技术,剖解开封装的对象内部,并将那些影响了多个类的公共行为封装到一个可重用模块,并将其命名为"Aspect",即切面。
所谓"切面",简单说就是那些与业务无关,却为业务模块所共同调用的逻辑或责任封装起来,便于减少系统的重复代码,降低模块之间的耦合度,并有利于未来的可操作性和可维护性。
横切技术
AOP把软件系统分为两个部分:核心关注点和横切关注点。业务处理的主要流程是核心关注点,与之关系不大的部分是横切关注点。
横切关注点的一个特点是,他们经常发生在核心关注点的多处,而各处基本相似,比如权限认证、日志、事物。AOP的作用在于分离系统中的各种关注点,将核心关注点和横切关注点分离开来。
C、 Spring对AOP的支持
Spring中AOP代理由Spring的IOC容器负责生成、管理,其依赖关系也由IOC容器负责管理。因此,AOP代理可以直接使用容器中的其它bean实例作为目标,这种关系可由IOC容器的依赖注入提供。
Spring创建代理的规则为:
1、默认使用Java动态代理来创建AOP代理,这样就可以为任何接口实例创建代理了
2、当需要代理的类不是代理接口的时候,Spring会切换为使用CGLIB代理,也可强制使用CGLIB代理,需要在xml中加入如下配置
<aop:aspectj-autoproxy proxy-target-class="true"/>
一般遇到如下的报错信息,大都是由这个原因导致的
com.sun.proxy.$Proxy2 cannot be cast to
二、AOP的使用
A、 依赖jar包
使用Spring AOP,除使用Spring提供的jar包外,还依赖两个jar包:
aopalliance.jar aspectjweaver.jar
spring-tx.jar???
<!-- https://mvnrepository.com/artifact/aopalliance/aopalliance -->
<dependency>
<groupId>aopalliance</groupId>
<artifactId>aopalliance</artifactId>
<version>1.0</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.aspectj/aspectjweaver -->
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjweaver</artifactId>
<version>1.8.13</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-tx</artifactId>
<version>4.2.4.RELEASE</version>
</dependency>
B、 代码讲解
定义一个接口
package com.spring.service;
public interface ICase {
void getName();
void getResult();
}
定义两个接口实现类:
package com.spring.service.impl;
import com.spring.service.ICase;
public class TestCase implements ICase {
public void getName() {
System.out.println("TestCase.getName");
}
public void getResult() {
System.out.println("TestCase.getResult");
}
}
package com.spring.service.impl;
import com.spring.service.ICase;
public class TestSuite implements ICase{
public void getName(){
System.out.println("TestSuite.getName");
}
public void getResult(){
System.out.println("TestSuite.getResult");
}
}
横切关注点
package com.fei.tools;
import java.text.SimpleDateFormat;
import java.util.Date;
public class TimeHandler {
public void printTime()
{
long currentTime = System.currentTimeMillis();
SimpleDateFormat formatter = new SimpleDateFormat("yyyy年MM月dd日-HH时mm分ss秒");
Date date = new Date(currentTime);
System.out.println(formatter.format(date));
}
}
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-4.2.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-4.2.xsd">
<bean id="testcase" class="com.spring.service.impl.TestCase" />
<bean id="testsuite" class="com.spring.service.impl.TestSuite" />
<bean id="timeHandler" class="com.fei.tools.TimeHandler" />
<aop:aspectj-autoproxy proxy-target-class="true"/>
<aop:config>
<aop:aspect id="time" ref="timeHandler">
<aop:pointcut id="addAllMethod" expression="execution(* com.spring.service.ICase.*(..))" />
<aop:before method="printTime" pointcut-ref="addAllMethod" />
<aop:after method="printTime" pointcut-ref="addAllMethod" />
</aop:aspect>
</aop:config>
</beans>
横切关注点的作用是在调用ICase接口下的方法,之前和之后执行TimeHandler的printTime方法。
写一个测试函数调用一下:
package com.spring.maintest;
import com.spring.service.impl.TestCase;
import com.spring.service.impl.TestSuite;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class AOPTest {
public static void main(String[] args) {
ApplicationContext ctx = new ClassPathXmlApplicationContext("Spring-AOP.xml");
TestCase tc = (TestCase)ctx.getBean("testcase");
TestSuite ts = (TestSuite)ctx.getBean("testsuite");
System.out.println("===========================");
tc.getName();
System.out.println("---------------------------");
tc.getResult();
System.out.println("===========================");
ts.getName();
System.out.println("---------------------------");
ts.getResult();
System.out.println("===========================");
}
}
输出代码如下
===========================
2018年03月24日-12时01分55秒
TestCase.getName
2018年03月24日-12时01分55秒
---------------------------
2018年03月24日-12时01分55秒
TestCase.getResult
2018年03月24日-12时01分55秒
===========================
2018年03月24日-12时01分55秒
TestSuite.getName
2018年03月24日-12时01分55秒
---------------------------
2018年03月24日-12时01分55秒
TestSuite.getResult
2018年03月24日-12时01分55秒
===========================
增加一个横切关注点,打印日志
package com.fei.tools;
public class LogHandler {
public void BeforeTest()
{
System.out.println("Begin to test");
}
public void AfterTest()
{
System.out.println("Test End");
}
}
AOP的属性
执行顺序
要想让logHandler在timeHandler前使用有两个办法:
(1)aspect里面有一个order属性,order属性的数字就是横切关注点的顺序
(2)把logHandler定义在timeHandler前面,Spring默认以aspect的定义顺序作为织入顺序
指定方法执行
修改一下pointcut的expression就好了
举例修改xml,使得在只有执行getResult方法前后才调用LogHandler类下的方法
<?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-4.2.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-4.2.xsd">
<!--xmlns:tx="http://www.springframework.org/schema/tx"-->
<bean id="testcase" class="com.spring.service.impl.TestCase" />
<bean id="testsuite" class="com.spring.service.impl.TestSuite" />
<bean id="timeHandler" class="com.fei.tools.TimeHandler" />
<bean id="logHandler" class="com.fei.tools.LogHandler" />
<aop:aspectj-autoproxy proxy-target-class="true"/>
<aop:config>
<aop:aspect id="time" ref="timeHandler" order="1">
<aop:pointcut id="addAllMethod" expression="execution(* com.spring.service.ICase.*(..))" />
<aop:before method="printTime" pointcut-ref="addAllMethod" />
<aop:after method="printTime" pointcut-ref="addAllMethod" />
</aop:aspect>
<aop:aspect id="log" ref="logHandler" order="2">
<aop:pointcut id="printLog" expression="execution(* com.spring.service.ICase.*Result*(..))" />
<aop:before method="BeforeTest" pointcut-ref="printLog" />
<aop:after method="AfterTest" pointcut-ref="printLog" />
</aop:aspect>
</aop:config>
</beans>
输出如下
===========================
2018年03月24日-12时33分27秒
TestCase.getName
2018年03月24日-12时33分27秒
---------------------------
2018年03月24日-12时33分27秒
Begin to test
TestCase.getResult
Test End
2018年03月24日-12时33分27秒
===========================
2018年03月24日-12时33分27秒
TestSuite.getName
2018年03月24日-12时33分27秒
---------------------------
2018年03月24日-12时33分27秒
Begin to test
TestSuite.getResult
Test End
2018年03月24日-12时33分27秒
===========================
参考文档
http://www.cnblogs.com/xrq730/p/4919025.html
https://www.cnblogs.com/zhaozihan/p/5953063.html