Spring5学习笔记 — “AOP操作—AspectJ注解”
Posted 一切因为是码农
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring5学习笔记 — “AOP操作—AspectJ注解”相关的知识,希望对你有一定的参考价值。
AOP相关操作:
Spring 框架一般都是基于 AspectJ 实现 AOP 操作,AspectJ 不是 Spring 组成部分,独立 AOP 框架,一般把 AspectJ 和 Spirng 框架一起使 用,进行 AOP 操作。
(2)基于 AspectJ 实现 AOP 操作:
- 基于
xml 配置文件
实现 - 基于
注解
方式实现(常用)
(3)切入点表达式 (重点)
示例如下:
(1)切入点表达式作用:知道对哪个类里面的哪个方法进行增强
(2)语法结构: execution([权限修饰符] [返回类型] [类全路径] [方法名称]([参数列表]) )
(3)例子如下:
例 1:对 com.atguigu.dao.BookDao 类里面的 add 进行增强
execution(* com.atguigu.dao.BookDao.add(..))
例 2:对 com.atguigu.dao.BookDao 类里面的所有的方法进行增强
execution(* com.atguigu.dao.BookDao.* (..))
例 3:对 com.atguigu.dao 包里面所有类,类里面所有方法进行增强
execution(* com.atguigu.dao.*.* (..))
代码示例:
一、前期准备
//1.创建被增强类
public class Book {
public void add(){
System.out.println("book add............");
}
}
//2、创建增强类(编写增强逻辑,用于增强 Book)
//在增强类里面,创建方法,让不同方法代表不同通知类型
public class BookProxy {
public void before() {
//该方法中写增强的代码
......
}
//也可以写多个用于增强的方法
......
}
二、编写Spring配置文件(要引入aop,context名称空间)
<?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:context="http://www.springframework.org/schema/context"
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/context http://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd">
<!--上方引入context,aop名称空间-->
<!--开启组件扫描-->
<context:component-scan base-package="demo5"></context:component-scan>
<!--开启AspectJ生成代理对象
自动寻找带有@Aspect注解的类,并生成该类的代理对象
-->
<aop:aspectj-autoproxy></aop:aspectj-autoproxy>
</beans>
三、使用注解创建类的对象,以及增强类的代理对象
//增强的类
@Component
@Aspect //生成代理对象
public class BookProxy {}
//被增强的类
@Component
public class Book {}
四、在增强类中配置不同类型的通知
//创建增强类
@Component
@Aspect
public class BookProxy {
//公共切入点抽取
@Pointcut(value = "execution(* demo5.Book.add(..))")
public void Point(){
}
//1.前置通知
@Before(value = "Point()")
public void before(){
System.out.println("before运行了.......");
}
//2.后置通知(返回通知),位置:最后
@AfterReturning(value = "Point()")
public void afterReturning(){
System.out.println("afterreturning 运行了..........");
}
//3.最终通知
@After(value = "Point()")
public void after(){
System.out.println("after运行了..........");
}
//4.异常通知
@AfterThrowing(value = "execution(* demo5.Book.add(..))")
public void afterThrowing(){
System.out.println("afterThrowing运行了............");
}
//5.环绕通知
@Around(value = "execution(* demo5.Book.add(..))")
public void around(ProceedingJoinPoint proceedingJoinPoint) throws Throwable{
System.out.println("环绕之前................");
//执行被增强的方法
proceedingJoinPoint.proceed();
System.out.println("环绕之后................");
}
}
(此处涉及:切入点表达式
)
五、观察运行结果,注意不同通知的运行顺序
注意:
若有多个增强类对同一个方法进行增强,可以设置 增强类优先级
//(1)在增强类上面添加注解 @Order(数字类型值),数字类型值越小优先级越高
@Component
@Aspect
@Order(1)
public class PersonProxy(){
}
以上是关于Spring5学习笔记 — “AOP操作—AspectJ注解”的主要内容,如果未能解决你的问题,请参考以下文章
Spring5学习笔记(14) — “Spring5 声明式事务管理”
Spring5学习笔记(14) — “Spring5 声明式事务管理”