gpt4 book ai didi

java - Spring AOP配置拦截所有异常

转载 作者:行者123 更新时间:2023-11-30 04:58:47 28 4
gpt4 key购买 nike

我正在努力编写/配置 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>

当我的 Main::doSomething() 方法被调用时,我的 ProfilingInterceptor 工作完美并精确拦截 - 所以我知道我已经步入正轨。使用 XmlSpy 查看 Spring AOP 的架构,看起来我可以添加类似以下内容,以便让我的 ExceptionsInterceptor 拦截所有抛出的异常:

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

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

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

最佳答案

根据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"   />

希望有帮助。

关于java - Spring AOP配置拦截所有异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7637512/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com