我使用Spring AOP进行异常处理。 我正在使用周围的建议,因为我想记录输入参数。
我的方面方法是这样的:
public Object methodName(ProceedingJointPoint pjp){
Object returnVal = null;
try{
returnVal = pjp.proceed();
} catch(Throable t) {
// Log exception
}
return returnVal ;
}
我目前面临的问题是:当发生异常时我想记录异常,但我不想返回null(returnval)。有可能吗?
在没有AOP的正常场景中:当方法中的某些行在该行之后抛出异常时,不会执行任何其他行。我想要这样的行为。
我们怎么能这样呢?
答案 0 :(得分:2)
旧的已检查异常,Java设计错误只会继续咬人。
重新抛弃throwable:
public Object methodName(ProceedingJointPoint pjp) throws Throwable {
...
try {
return pjp.proceed();
} catch (Throwable t) {
// so something with t: log, wrap, return default, ...
log.warn("invocation of " + pjp.getSignature().toLongString() + " failed", t);
// I hate logging and re-raising, but let's do it for the sake of this example
throw t;
}