Spring AOP (三) XML配置方式

在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-3.2.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.3.xsd">


<!-- 先配置切面對象的bean -->
<bean id="calculator" class="com.ArithCalculator"></bean>
<bean id="arithLoggingAspect" class="com.ArithLoggingAspect"></bean>

<aop:config>
<!-- 
expression: 切面表達式,跟@Pointcut的value效果一致,此處必須用全類名
id:給後面的 aop:aspect引用
-->
<aop:pointcut expression="execution(* com.Calculator.*(..))" id="declarePointcut"/>

<!--
ref:指定切面的bean
order:指定切面的優先級 
-->
<aop:aspect ref="arithLoggingAspect" order="1">
<!-- 
method:切面通知方法
pointcut-ref:上述已定義的切面id
-->
<aop:before method="beforeMethod" pointcut-ref="declarePointcut"/>
<aop:after method="afterMethod" pointcut-ref="declarePointcut"/>
<!--
returning:名稱必須與切面通知方法 afterReturn的參數名稱一致
-->
<aop:after-returning method="afterReturn" pointcut-ref="declarePointcut" returning="rtv"/>
<!--
throwing:名稱必須與切面通知方法 afterException的參數名稱一致
-->
<aop:after-throwing method="afterException" pointcut-ref="declarePointcut" throwing="e"/>
<aop:around method="around" pointcut-ref="declarePointcut"/>
</aop:aspect>
</aop:config>
</beans>

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章