基于XML的AOP开发
基本步骤
① 导入 AOP 相关坐标
② 创建目标接口和目标类(内部有切点)
③ 创建切面类(内部有增强方法)
④ 将目标类和切面类的对象创建权交给 Spring
⑤ 在 applicationContext.xml 中配置织入关系
⑥ 测试代码
1.导入AOP相关坐标
<!--导入Spring的context坐标,context依赖aop-->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>5.0.5.RELEASE</version>
</dependency>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjweaver</artifactId>
<version>1.8.4</version>
</dependency>
2.创建目标接口和目标类
- 目标接口
package org.example.aop;
public interface TargetInterface {
public void save();
}
- 目标类
package org.example.aop;
public class Target implements TargetInterface{
public void save() {
System.out.println("saving......");
System.out.println(1/0);
}
}
3.创建切面类
package org.example.aop;
import org.aspectj.lang.ProceedingJoinPoint;
public class Advice {
public void before(){
System.out.println("前置增强......");
}
public void afterReturning(){
System.out.println("后置增强......");
}
// ProceedingJoinPoint:正在执行的连接点 == 切点
public Object around(ProceedingJoinPoint pjd) throws Throwable {
System.out.println("环绕前......");
Object process = pjd.proceed(); //执行切点方法
System.out.println("环绕后......");
return process;
}
public void afterThrowing(){
System.out.println("出错了......");
}
public void after(){
System.out.println("最终......");
}
}
4.将目标类和切面类的对象创建权交给 Spring And 5.在 applicationContext.xml 中配置织入关系
applicationContext.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/aop http://www.springframework.org/schema/aop/spring-aop.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
<!-- 目标对象 -->
<bean id="target" class="org.example.aop.Target"></bean>
<!-- 切面对象 -->
<bean id="myAspect" class="org.example.aop.Advice"></bean>
<!--配置织入:告诉spring框架 哪些方法(切点)需要进行哪些增强(前置、后置...)-->
<aop:config>
<!--声明切面-->
<aop:aspect ref="myAspect">
<!--提取切点表达式-->
<aop:pointcut id="myPointcut" expression="execution(* org.example.aop.Target.*(..))"/>
<aop:before method="before" pointcut-ref="myPointcut"></aop:before>
<aop:after-returning method="afterReturning" pointcut-ref="myPointcut"></aop:after-returning>
<aop:around method="around" pointcut-ref="myPointcut"></aop:around>
<aop:after-throwing method="afterThrowing" pointcut-ref="myPointcut"></aop:after-throwing>
<aop:after method="after" pointcut-ref="myPointcut"></aop:after>
<!--切面:切点+通知-->
<!--<aop:after method="afterReturning" pointcut="execution(public void org.example.aop.Target.save())"></aop:after>-->
</aop:aspect>
</aop:config>
</beans>
6.测试代码
- Maven依赖
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<version>5.0.5.RELEASE</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
</dependency>
- 测试
package org.example.test;
import org.example.aop.TargetInterface;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration("classpath:applicationContext.xml")
public class AopTest {
@Autowired
private TargetInterface target;
@Test
public void test(){
target.save();
}
}
XML配置AOP详解
1.切点表达式的写法
表达式语法:
execution([修饰符] 返回值类型 包名.类名.方法名(参数))
- 访问修饰符可以省略
- 返回值类型、包名、类名、方法名可以使用星号* 代表任意
- 包名与类名之间一个点 . 代表当前包下的类,两个点 .. 表示当前包及其子包下的类
- 参数列表可以使用两个点 .. 表示任意个数,任意类型的参数列表
2.通知的类型
通知的配置语法:
<aop:通知类型 method=“切面类中方法名” pointcut=“切点表达式"></aop:通知类型>
名称 | 标签 | 说明 |
---|---|---|
前置通知 | <aop:before> | 用于配置前置通知。指定增强的方法在切入点方法之前执行 |
后置通知 | <aop:after-returning> | 用于配置后置通知。指定增强的方法在切入点方法之后执行 |
环绕通知 | <aop:around> | 用于配置环绕通知。指定增强的方法在切入点方法之前和之后都执行 |
异常抛出通知 | <aop:throwing> | 用于配置异常抛出通知。指定增强的方法在出现异常时执行 |
最终通知 | <aop:after> | 用于配置最终通知。无论增强方式执行是否有异常都会执行 |
3.切点表达式的抽取
当多个增强的切点表达式相同时,可以将切点表达式进行抽取,在增强中使用 pointcut-ref 属性代替 pointcut 属性来引用抽取后的切点表达式。
<aop:config>
<!--声明切面-->
<aop:aspect ref="myAspect">
<!--提取切点表达式-->
<aop:pointcut id="myPointcut" expression="execution(* org.example.aop.Target.*(..))"/>
<aop:before method="before" pointcut-ref="myPointcut"></aop:before>
<!--切面:切点+通知-->
<!--<aop:after method="afterReturning" pointcut="execution(public void org.example.aop.Target.save())"></aop:after>-->
</aop:aspect>
</aop:config>
知识要点
- AOP织入的配置
<aop:config>
<aop:aspect ref=“切面类”>
<aop:before method=“通知方法名称” pointcut=“切点表达式"></aop:before>
</aop:aspect>
</aop:config>
- 通知的类型:前置通知、后置通知、环绕通知、异常抛出通知、最终通知
- 切点表达式的写法:
execution([修饰符] 返回值类型 包名.类名.方法名(参数))