0
工作後,我有一個方面,在這個時刻沒有做什麼特別的東西:的Spring AOP之前和方法不使用XML配置
@Named
public final class PreventNullReturn {
public void replaceNullWithSpecialCase() {
System.out.print("ASPECT CALLED!");
throw new AssertionError();
}
}
它只是應該拋出一個錯誤來證明它被調用。我有spring-aspects.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-3.0.xsd"
>
<aop:aspectj-autoproxy/>
<bean class="aspects.PreventNullReturn"
id="preventNullReturn"
></bean>
<aop:config>
<aop:aspect
ref="preventNullReturn"
>
<aop:pointcut
id="preventNull"
expression="execution(* *.getById(..))"
></aop:pointcut>
<aop:before
pointcut-ref="preventNull"
method="replaceNullWithSpecialCase"
></aop:before>
<aop:after
pointcut-ref="preventNull"
method="replaceNullWithSpecialCase"
></aop:after>
</aop:aspect>
</aop:config>
</beans>
而在春季單元測試我使用這種方式配置文件:
<import resource="classpath*:spring-aspects.xml" />
但一方面不叫。有趣的是,即使IDE顯示Navigate to advised methods
工具提示,它正確導航。我試圖按照1.1.3. Applying aspects
章節中的"Spring in Action, Fourth Edition book(這就是爲什麼我使用XML而不是類),但是我做錯了什麼,我無法弄清楚。如果我能提供更多有用的細節,請寫信。如果您決定幫助我,請提前致謝,我將不勝感激。