方法不使用XML配置之前和之后的Spring AOP

时间:2016-05-29 11:30:14

标签: java spring spring-mvc aop spring-aop

我有一个方面,在这一刻并没有做任何特别的事情:

@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>

在Spring单元测试的配置文件中,我以这种方式使用它:

<import resource="classpath*:spring-aspects.xml" />

但不会调用方面。有趣的是,甚至IDE显示Navigate to advised methods工具提示并正确导航。我尝试在1.1.3. Applying aspects一章中关注"Spring in Action, Fourth Edition book(这就是为什么我使用XML而不是类),但我做错了,我无法弄清楚。如果我能提供更多有用的细节,请写信。如果你决定帮助我,我将不胜感激,谢谢你。

1 个答案:

答案 0 :(得分:0)

我自己找到了一个答案,而是将其作为Spring单元测试的配置文件中的资源导入:

<import resource="classpath*:spring-aspects.xml" />

我必须将其内容直接放在Spring单元测试的配置文件中:

 <!--TODO: Move it to separated file-->
<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>

这当然比在分离文件中使用它更糟糕的解决方案,但这是我能让它工作的唯一方法。