Spring AOP面向切面编程

tech2023-01-06  134

org所需要的的依赖:

AOP相关概念

applicationContext.xml配置文件:

<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 https://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/aop https://www.springframework.org/schema/aop/spring-aop.xsd"> <!-- bean definitions here --> </beans>

JoinPoint核心方法

PointCut切点表达式

public可以忽略掉

AOP通知

返回后通知:返回后通知可以接收目标方法的返回值 方法中有两个参数 返回后通知和后置通知的执行顺序是由配置的顺序决定的 异常通知与后置通知的执行顺序也是如此 异常通知:

环绕通知Around

利用注解配置Spring AOP

AOP中的代理模式应用

代理模式与静态代理

静态代理是指必须手动创建代理类的代理模式使用方式

动态代理:

CGLib实现代理类

最新回复(0)