用于拦截所有异常的Spring AOP配置

时间:2011-10-03 16:01:58

标签: java xml spring aop

我正在努力编写/配置ThrowsAdvice拦截器,我想拦截整个项目中抛出的所有异常:

public class ExceptionsInterceptor implements ThrowsAdvice
{
    public void afterThrowing(final Method p_oMethod, final Object[] p_oArgArray,
        final Object p_oTarget, final Exception p_oException)
    {
        System.out.println("Exception caught by Spring AOP!");
    }
}

我已经成功配置了一个MethodInterceptor实现,该实现拦截了我想要分析的特定方法(查看它们执行需要多长时间)。这是我到目前为止的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
    http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd"/>

<bean name="profilingInterceptor" class="org.me.myproject.aop.ProfilingInterceptor"/>

<bean name="exceptionsInterceptor" class="org.me.myproject.aop.ExceptionsInterceptor"/>

<aop:config>
    <aop:advisor advice-ref="profilingInterceptor" pointcut="execution(* org.me.myproject.core.Main.doSomething(..))"/>
</aop:config>

我的ProfilingInterceptor完美地工作,并且当我的Main :: doSomething()方法被调用时精确地拦截 - 所以我知道我是ontrack。使用XmlSpy查看Spring AOP的模式,看起来我可以添加类似下面的内容,以便让我的ExceptionsInterceptor拦截所有抛出的异常:

<aop:aspect>
    <after-throwing method=""/>
</aop:aspect>

但是我找不到任何以此为例的文档,我不知道如何配置方法属性以使其成为“通配符”(*)并匹配所有类和所有方法。

有人能指出我正确的方向吗?提前致谢!

1 个答案:

答案 0 :(得分:2)

根据aspectJ示例,方法参数指的是@AfterThrowing建议方法:

@Aspect
public class LoggingAspect {

  @AfterThrowing(
   pointcut = "execution(* package.addCustomerThrowException(..))",
   throwing= "error")
  public void logAfterThrowing(JoinPoint joinPoint, Throwable error) {
    //...
  }
}    

然后配置:

 <aop:after-throwing method="logAfterThrowing" throwing="error"   />

希望它有所帮助。