出于日志记录的目的,我们试图通过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表达式必须存在问题。
UPDATE:方法中的代码没有运行,我不打算在建议中捕获异常。
有什么想法吗? Thx提前。
P.S。 Spring框架版本是3.0.6。
答案 0 :(得分:2)
以下是一些让我感到高兴的事情:
execution(* com.mypackage..*(..))
的地方。要尝试的事情:
Exception
。也许您正在寻找的例外处于不同的层次结构中。