AOP XML 配置的简单入门

AOP XML配置简单入门

  • 导入AOP相关坐标
  • 创建目标接口和目标类
  • 创建切面类(内部有增强方法)
  • 将目标类的切面类的对象创建权交给Spring
  • 在applicationContext.xml中配置织入关系
  • 测试代码
<dependecy>
    <groupId>org.aspectj</groupId>
    <artifactId>aspectjweaver</artifactId>
    <version>1.8.4</version>
</dependecy>
<dependecy>
    <groupId>org.springframework</groupId>
    <artifactId>spring-context</artifactId>
    <version>5.2.0</version>
</dependecy>
//目标接口
public interface TargetInterface {
    void save();
}
//目标类
public class Target implements TargetInterface{
    public void save(){
        System.out.println("save running...");
    }
}
//切面类
public class MyAspect{
    public void before(){
        System.out.println("-------------前置增强-------------");
    }
}
<!--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/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 id="target" class="com.jotian.aop.Target"></bean>
    <!--切面对象-->
    <bean id="myAspect" class="com.jotian.aop.MyAspect"></bean>
    <!--配置织入,告诉Spring框架,那些方法需要进行那些增强(前置,后置)-->
    <aop:config>
        <!--声明切面-->
    	<aop:aspect ref="myAspect">
        	<!--切点 通知-->
            <aop:before method="before" pointcut="execution(public void com.jotian.aop.Target.save()) "></aop:before>
        </aop:aspect>
    </aop:config>
</beans>
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration("classpath:applicationContext.xml")
public class AopTest{
    @Autowired
    private TargetInterface target;
    @Test
    public void test1(){
        target.save();
    } 
}

XML配置AOP详解

  1. 切点表达式的写法

    表达式语法:

    execution([修饰符]返回值类型 包名.类名.方法名(参数))
    
    • 访问修饰符可以省略
    • 返回值类型、包名、类名、方法名可以使用星号*代表任意
    • 包名与类名之间一个点,代表当前包下的类,两个带点..表示当前包及其子包下的类
    • 参数列表表示可以使用两个点..表示任意个数,任意类型的参数列表

    例如:

    execution(public void com.jotian.aop.Target.method())
    execution(void com.jotian.aop.Target.*(..))
    execution(* com.jotian.aop..*.*(..))
    execution(* com.jotian.aop.*.*(..))
    execution(* *..*.*(..))
    
  2. 通知的类型

    通知的配置方法:

    <aop:通知类型method="切面类中的方法名" pointcut=“切点表达式”></aop:通知类型 >

    名称 标签 说明
    前置通知 < aop:before > 用于配置前置通知。指定增强的方法在切入点方法之前执行
    后置通知 < aop:after-returning> 用于配置后置通知。指定增强的方法在切入点方法之后执行
    环绕通知 < aop:around> 用于配置环绕通知。指定增强的方法在切入点方法之前和之后都执行
    异常抛出通知 < aop:throwing> 用于配置异常抛出通知。指定增强的方法在出现异常时执行
    最终通知 < aop:after> 用于配置最终通知。无论增强方式执行是否有异常都会执行
  3. 切点表达式的抽取

    当多个增强的切点表达式相同时,可以将切点表达式进行抽取,在增强中使用pointcut-ref属性代替pointcut属性来引用抽取后的切点表达式。

    <aop:config>
    	<!--引用muAspect的Bean为切面对象-->
        <aop:aspect ref="myAspect">
            <!--抽取切点表达式-->
        	<aop:pointcut id="myPointcut" expression="execution(* com.jotian.aop.*.*(..))"></aop:pointcut>
            <!--切面:切点+通知-->
            <aop:before method="before" pointcut-ref="myPointcut"></aop:before>
        </aop:aspect>
    </aop:config>
    

知识要点

  • aop织入的配置

    <aop:config>
    	<aop:aspect ref="前面类">
        	<aop:before method="通知方法名称" pointcut="切点表达式"></aop:before>
        </aop:aspect>
    </aop:config>
    
  • 通知的类型:前置通知、后置通知、环绕通知、异常抛出通知、最终通知

  • 切点表达式的写法:

    execution([修饰符]返回值类型 包名.类名.方法名(参数))
    
上一篇:Springboot笔记<11>面向切面编程AOP


下一篇:Spring 框架的 AOP代码实现