出于日志记录的目的,我们正在尝试通过 Spring 自己的 AOP 捕获各种 Spring 的运行时异常,我必须说我没有成功,所以我会很感激任何关于如何解决这个问题的想法。
我试过这样的事情:
@Aspect
@Component
public class SomeAspect {
@AfterThrowing(pointcut = "execution(* org.springframwork.oxm..*(..))", throwing = "exception")
@Transactional(propagation = Propagation.REQUIRES_NEW, isolation = Isolation.READ_COMMITTED)
public void adviseSpringErrorEvents(JoinPoint joinPoint, final UnmarshallingFailureException exception) throws Throwable {
LOG.debug(this.getClass().getSimpleName() + " - Error message advice fired on method: " + joinPoint.getSignature().getName());
}
}
该类是自动代理的,并且方面类中的其余建议正确触发,因此 AspectJ 表达式肯定存在问题。
更新:方法中的代码没有运行,我无意在建议中捕获异常。
有任何想法吗?提前谢谢。
PS Spring框架版本是3.0.6。