Spring基于配置文件的方式来配置AOP

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="atithmeticCalculatorImpl" class="aop.xml.AtithmeticCalculatorImpl">bean>

    
    <bean id = "loggingAspect" class="aop.xml.LoggingAspect">bean>

    
    <aop:config>
        
        <aop:pointcut id="pointcut" expression="execution(public int aop.AtithmeticCalculatorImpl.*(int,int))"/>
        
        <aop:aspect ref="loggingAspect" order="1">
            <aop:before method="beforeMethod" pointcut-ref="pointcut"/>
            <aop:after method="afterMethod" pointcut-ref="pointcut"/>
            <aop:after-throwing method="afterThrowingMethod" pointcut-ref="pointcut" throwing="e"/>
            <aop:after-returning method="afterReturningMethod" pointcut-ref="pointcut" returning="result"/>
        aop:aspect>
    aop:config>
beans>
除了使用AspectJ注解声明切面,Spring也支持在Bean配置文件中声明切面。这种声明是通过aop schema中的XML元素完成的
正常情况下,基于注解的声明要优先于XML的声明,通过AspectJ注解,切面可以与AspectJ兼容,而基于XML的配置则是Spring专有的,由于AspectJ得到越来越多的AOP框架的支持,所以已注解风格编程的切面将会有更多重用的机会
一、声明切面
--当使用XML声明切面时,需要在根元素中导入aop Schema
--在Bean配置文件中,所有的SpringAOP配置都必须定义在元素内部,对于每个切面而言,都要创建一个元素来为具体的切面实现引用后端Bean实例
--切面Bean必须有一个标识符,供元素来引用
二、声明切入点
--切入点使用元素声明
--切入点必须定义在元素下,或者直接定义在元素下
     --定义在元素下:只对当前切面有效
     --定义在元素下:对所有的切面都有效
--基于XML的AOP配置不允许在表达式中用名称引用其他切点
三、声明通知
--在aopSchema中,每种通知类型都对应一个特定的XML元素
--通知元素需要使用来引用切入点,或用直接 嵌入切入点表达式 method 属性指定切面类中通知方法的名称



你可能感兴趣的:(Spring)