1.简介
如果说 IoC 是 Spring 的核心,那么面向切面编程就是 Spring 最为重要的功能之一了,在数据库事务中切面编程被广泛使用。
什么是AOP
AOP 即 Aspect Oriented Program 面向切面编程
首先,在面向切面编程的思想里面,把功能分为核心业务功能,和周边功能。
- 所谓的核心业务,比如登陆,增加数据,删除数据都叫核心业务
- 所谓的周边功能,比如性能统计,日志,事务管理等等
周边功能在 Spring 的面向切面编程AOP思想里,即被定义为切面
在面向切面编程AOP的思想里面,核心业务功能和切面功能分别独立进行开发,然后把切面功能和核心业务功能 "编织" 在一起,这就叫AOP
AOP 的目的
AOP能够将那些与业务无关,却为业务模块所共同调用的逻辑或责任(例如事务处理、日志管理、权限控制等)封装起来,便于减少系统的重复代码,降低模块间的耦合度,并有利于未来的可拓展性和可维护性。
AOP 当中的概念:
切入点(Pointcut):在哪些类,哪些方法上切入(where)
通知(Advice):在方法执行的什么时机(when:方法前/方法后/方法前后)做什么(what:增强的功能)
切面(Aspect):切面 = 切入点 + 通知,通俗点就是:在什么时机,什么地方,做什么增强!
织入(Weaving):把切面加入到对象,并创建出代理对象的过程。(由 Spring 来完成)
2.实现方式
2.1.通过Spring API实现
首先编写我们的业务接口和实现类
public interface UserService {
public void add();
public void delete();
public void update();
public void select();
}
public class UserServiceImpl implements UserService {
public void add() {
System.out.println("增加了一个用户");
}
public void delete() {
System.out.println("删除了一个用户");
}
public void update() {
System.out.println("更新了一个用户");
}
public void select() {
System.out.println("查找了一个用户");
}
}
然后去写我们的增强类 , 我们编写两个 , 一个前置增强 一个后置增强
public class Log implements MethodBeforeAdvice {
//method:要执行的目标对象的方法
//objects:参数
//target:目标对象
public void before(Method method, Object[] objects, Object target) throws Throwable {
System.out.println(target.getClass().getName()+"的"+method.getName()+"被执行了");
}
}
public class AfterLog implements AfterReturningAdvice {
//returnValue 返回值
public void afterReturning(Object returnValue, Method method, Object[] args, Object target) throws Throwable {
System.out.println("执行了"+method.getName()+"方法,返回结果为:"+returnValue);
}
}
最后去spring的文件中注册 , 并实现aop切入实现 , 注意导入约束 .
<?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.xsd">
<!-- 注册bean -->
<bean id="userService" class="com.sxw.service.UserServiceImpl" />
<bean id="log" class="com.sxw.log.Log" />
<bean id="afterLog" class="com.sxw.log.AfterLog" />
<!-- 方式一:使用元素spring api 接口 -->
<!-- 配置aop 需要导入aop的约束-->
<aop:config>
<!-- 切入点 expression:表达式 execution(要执行的位置!)-->
<aop:pointcut id="pointcut" expression="execution(* com.sxw.service.UserServiceImpl.*(..))"/>
<!-- 执行环绕增强 -->
<aop:advisor advice-ref="log" pointcut-ref="pointcut" />
<aop:advisor advice-ref="afterLog" pointcut-ref="pointcut" />
</aop:config>
</beans>
测试
@Test
public void test01(){
ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
//动态代理 代理的是接口
UserService userService = (UserService)context.getBean("userService");
userService.add();
}
2.2.自定义类来实现AOP
目标业务类不变依旧是userServiceImpl
第一步 : 写我们自己的一个切入类
public class DiyPointCut {
public void before(){
System.out.println("======方法执行前=====");
}
public void after(){
System.out.println("=====方法执行后=====");
}
}
去spring中配置
<!-- 方式二:自定义类 -->
<bean id="diy" class="com.sxw.diy.DiyPointCut" />
<aop:config>
<!-- 自定义切面 ref要引用的类 -->
<aop:aspect ref="diy">
<!-- 切入点 -->
<aop:pointcut id="point" expression="execution(* com.sxw.service.UserServiceImpl.*(..))"/>
<!-- 通知 -->
<aop:before method="before" pointcut-ref="point" />
<aop:after method="after" pointcut-ref="point" />
</aop:aspect>
</aop:config>
2.3.第三种方式
使用注解实现
第一步:编写一个注解实现的增强类
@Aspect //标注这个类是一个切面
public class AnnotationPointCut {
@Before("execution(* com.sxw.service.UserServiceImpl.*(..))")
public void before(){
System.out.println("=====方法执行前======");
}
@After("execution(* com.sxw.service.UserServiceImpl.*(..))")
public void after(){
System.out.println("=====方法执行后======");
}
//在环绕增强中,我们可以给定一个参数,代表我们要获取处理的切入点
@Around("execution(* com.sxw.service.UserServiceImpl.*(..))")
public void around(ProceedingJoinPoint jp) throws Throwable {
System.out.println("环绕前");
//执行方法
Object proceed = jp.proceed();
System.out.println("环绕后");
}
}
第二步:在Spring配置文件中,注册bean,并增加支持注解的配置
<!-- 方式三 -->
<bean id="annotationPointCut" class="com.sxw.diy.AnnotationPointCut" />
<!-- 开启注解支持! -->
<aop:aspectj-autoproxy />
3.例子
为了更好的说明 AOP 的概念,我们来举一个实际中的例子来说明:
在上面的例子中,包租婆的核心业务就是签合同,收房租,那么这就够了,灰色框起来的部分都是重复且边缘的事,交给中介商就好了,这就是 AOP 的一个思想:让关注点代码与业务代码分离!
1、BaoZuPo.java
@Component
public class BaoZuPo {
public void service(){
System.out.println("签合同");
System.out.println("收房租");
}
}
2、ZhongJie.java
@Component
@Aspect
public class ZhongJie {
@Before("execution(* com.sxw.lizi.BaoZuPo.*(..))")
public void before(){
System.out.println("带租客看房");
System.out.println("谈价格");
}
@After("execution(* com.sxw.lizi.BaoZuPo.*(..))")
public void after(){
System.out.println("交钥匙");
}
}
3、在 applicationContext.xml 中配置自动注入,并告诉 Spring IoC 容器去哪里扫描这两个 Bean:
<context:component-scan base-package="com.sxw.lizi" />
<aop:aspectj-autoproxy />
4、测试
@Test
public void test02(){
ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
//动态代理 代理的是接口
BaoZuPo baoZuPo = context.getBean("baoZuPo", BaoZuPo.class);
baoZuPo.service();
}