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

    <!-- 配置切面的bean -->
    <bean id = "loggingAspect" class="aop.xml.LoggingAspect"></bean>

    <!-- 配置AOP -->
    <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声明切面时,需要在<beans>根元素中导入aop Schema
--在Bean配置文件中,所有的SpringAOP配置都必须定义在<aop:comfig>元素内部,对于每个切面而言,都要创建一个<aop:aspect>元素来为具体的切面实现引用后端Bean实例
--切面Bean必须有一个标识符,供<aop:aspect>元素来引用
二、声明切入点
--切入点使用<aop:pointcut>元素声明
--切入点必须定义在<aop:aspect>元素下,或者直接定义在<aop:config>元素下
     --定义在<aop:aspect>元素下:只对当前切面有效
     --定义在<aop:config>元素下:对所有的切面都有效
--基于XML的AOP配置不允许在表达式中用名称引用其他切点
三、声明通知
--在aopSchema中,每种通知类型都对应一个特定的XML元素
--通知元素需要使用<pointcut-ref>来引用切入点,或用<pointcut>直接 嵌入切入点表达式 method 属性指定切面类中通知方法的名称



  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值