Spring-06-AOP

Spring-06-AOP

mark

前序

上一讲中我们讲解了代理模式,这是AOP的基础,一定要先搞懂它

那我们接下来就来聊聊AOP吧!

1. 什么是AOP?

AOP(Aspect Oriented Programming)意为:面向切面编程

  • 通过预编译方式运行期动态代理实现程序功能的统一维护的一种技术

  • AOP是OOP的延续,是软件开发中的一个热点,也是Spring框架中的一个重要内容,是函数式编程的一种衍生范型

  • 利用AOP可以对业务逻辑的各个部分进行隔离,从而使得业务逻辑各部分之间的耦合度降低,提高程序的可重用性,同时提高了开发的效率。

mark

2. AOP的作用

提供声明式事务;允许用户自定义切面

以下名词需要了解下:

  • 横切关注点
  • 切面(ASPECT) 横切关注点 被模块化 的特殊对象。即,它是一个类。
  • 通知(Advice) 切面必须要完成的工作。即,它是类中的一个方法。
  • 目标(target) 被通知对象。
  • 代理(Proxy) 向目标对象应用通知之后创建的对象。
  • 切入点(PointCut)切面通知 执行的 “地点”的定义。
  • 连接点(JointPoint)与切入点匹配的执行点。

mark

  • SpringAOP中,通过Advice定义横切逻辑,Spring中支持5种类型的Advice:

3. AOP 通知的类型

(1) Before:在目标方法被调用之前做增强处理,@Before只需要指定切入点表达式即可

(2) AfterReturning:在目标方法正常完成后做增强,@AfterReturning除了指定切入点表达式后,还可以指定一个返回值形参名returning,代表目标方法的返回值

(3) AfterThrowing:主要用来处理程序中未处理的异常,@AfterThrowing除了指定切入点表达式后,还可以指定一个throwing的返回值形参名,可以通过该形参名来访问目标方法中所抛出的异常对象

(4) After:在目标方法完成之后做增强,无论目标方法时候成功完成。@After可以指定一个切入点表达式

(5) Around:环绕通知,在目标方法完成前后做增强处理,环绕通知是最重要的通知类型,像事务,日志等都是环绕通知,注意编程中核心是一个ProceedingJoinPoint

4. AOP 三种实现

【重点】使用AOP织入,需要导入一个依赖包!

1
2
3
4
5
6
<!-- https://mvnrepository.com/artifact/org.aspectj/aspectjweaver -->
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjweaver</artifactId>
<version>1.9.4</version>
</dependency>

4.1 通过Spring API实现

  • 首先编写我们的业务接口和实现类
1
2
3
4
5
6
7
8
9
10
11
public interface UserService {

public void add();

public void delete();

public void update();

public void search();

}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
public class UserServiceImpl implements UserService{

@Override
public void add() {
System.out.println("增加用户");
}

@Override
public void delete() {
System.out.println("删除用户");
}

@Override
public void update() {
System.out.println("更新用户");
}

@Override
public void search() {
System.out.println("查询用户");
}
}
  • 然后去写我们的增强类 , 我们编写两个 , 一个前置增强 一个后置增强
1
2
3
4
5
6
7
8
9
10
public class Log implements MethodBeforeAdvice {

//method : 要执行的目标对象的方法
//objects : 被调用的方法的参数
//Object : 目标对象
@Override
public void before(Method method, Object[] objects, Object o) throws Throwable {
System.out.println( o.getClass().getName() + "的" + method.getName() + "方法被执行了");
}
}
1
2
3
4
5
6
7
8
9
10
11
12
public class AfterLog implements AfterReturningAdvice {
//returnValue 返回值
//method被调用的方法
//args 被调用的方法的对象的参数
//target 被调用的目标对象
@Override
public void afterReturning(Object returnValue, Method method, Object[] args, Object target) throws Throwable {
System.out.println("执行了" + target.getClass().getName()
+"的"+method.getName()+"方法,"
+"返回值:"+returnValue);
}
}
  • 最后去Spring中注册,并实现aop切入实现,注意导入约束
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?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.zhuuu.service.UserServiceImpl"/>
<bean id="log" class="com.zhuuu.log.log"/>
<bean id="afterLog" class="com.zhuuu.log.AfterLog"/>


<!--配置aop-->
<aop:config>
<!-- 切入点 expression(要执行的位置) 表达式 -->
<aop:pointcut id="pointcut" expression="execution(* com.zhuuu.service.UserServiceImpl.*(..))"/>
<!--使用环绕增加-->
<aop:advisor advice-ref="log" pointcut-ref="pointcut"/>
<aop:advisor advice-ref="afterLog" pointcut-ref="pointcut"/>
</aop:config>

</beans>
  • Aop的重要性 : 很重要 . 一定要理解其中的思路 , 主要是思想的理解这一块 .

Spring的AOP就是将公共的业务(日志,安全等)和领域业务结合起来

  • 当执行领域业务会把公共业务加进来,实现公共业务的重复利用
  • 领域业务更加纯粹,AOP其本质还是动态代理

4.2 自定义类 实现AOP

目标业务类不变依旧是userServiceImpl

  • 第一步 : 写我们自己的一个切入类
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.zhuuu.config;

public class DiyPointCut {

public void before(){
System.out.println("===执行前===");
}

public void after(){
System.out.println("===执行后===");
}

}
  • spring中配置
1
2
3
4
5
6
7
8
9
10
11
12
13
<!--第二种方式自定义实现-->
<!--注册bean-->
<bean id="diy" class="com.zhuuu.config.DiyPointcut"/>

<!--aop的配置-->
<aop:config>
<!--第二种方式:使用AOP的标签实现-->
<aop:aspect ref="diy">
<aop:pointcut id="diyPonitcut" expression="execution(* com.zhuuu.service.UserServiceImpl.*(..))"/>
<aop:before pointcut-ref="diyPonitcut" method="before"/>
<aop:after pointcut-ref="diyPonitcut" method="after"/>
</aop:aspect>
</aop:config>
  • 测试:
1
2
3
4
5
6
7
8
public class MyTest {
@Test
public void test(){
ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
UserService userService = (UserService) context.getBean("userService");
userService.add();
}
}

4.3 注解实现AOP

  • 编写注解实现的增强类
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.zhuuu.anno;

import org.aspectj.lang.annotation.After;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Before;


// 使用注解方式实现aop
@Aspect // 注解这个类是一个切面,本质就是一个插入的类
public class AnnoPointCut {

@Before("execution(* com.zhuuu.service.UserServiceImpl.*(..))")
public void before(){
System.out.println("===执行前===");
}

@After("execution(* com.zhuuu.service.UserServiceImpl.*(..))")
public void after(){
System.out.println("===执行后===");
}
}
  • 在Spring配置文件中,注册bean,并增加支持注解的配置
1
2
3
4
5
6
7
8
9
10
11
12
13
<!--第三种方式:注解实现-->
<bean id="annotationPointcut" class="com.zhuuu.anno.AnnoPointCut;"/>


<!--开启aop注解支持-->
<aop:aspectj-autoproxy/>

<!--
<aop:aspectj-autoproxy />有一个proxy-target-class属性,默认为false,
表示使用jdk动态代理织入增强,
当配为<aop:aspectj-autoproxy poxy-target-class="true"/>时,表示使用CGLib动态代理技术织入增强。
不过即使proxy-target-class设置为false,如果目标类没有声明接口,则spring将自动使用CGLib动态代理。
-->

参考博客:

https://www.cnblogs.com/joy99/p/10941543.html

打赏
  • 版权声明: 本博客所有文章除特别声明外,均采用 Apache License 2.0 许可协议。转载请注明出处!
  • © 2019-2022 Zhuuu
  • PV: UV:

请我喝杯咖啡吧~

支付宝
微信