How to re-throw exception in AspectJ around advise

后端 未结 3 1331
孤城傲影
孤城傲影 2021-02-09 10:19

I have some methods which throws some exception, and I want to use AspectJ around advise to calculate the execution time and if some exception is thrown and to log into error lo

相关标签:
3条回答
  • 2021-02-09 10:40

    There is an "ugly" workaround - I found them in Spring4 AbstractTransactionAspect

    Object around(...): ... {
        try {
            return proceed(...);
        }
        catch (RuntimeException ex) {
            throw ex;
        }
        catch (Error err) {
            throw err;
        }
        catch (Throwable thr) {
            Rethrower.rethrow(thr);
            throw new IllegalStateException("Should never get here", thr);
        }
    }
    
    /**
     * Ugly but safe workaround: We need to be able to propagate checked exceptions,
     * despite AspectJ around advice supporting specifically declared exceptions only.
     */
    private static class Rethrower {
    
        public static void rethrow(final Throwable exception) {
            class CheckedExceptionRethrower<T extends Throwable> {
                @SuppressWarnings("unchecked")
                private void rethrow(Throwable exception) throws T {
                    throw (T) exception;
                }
            }
            new CheckedExceptionRethrower<RuntimeException>().rethrow(exception);
        }
    }
    
    0 讨论(0)
  • 2021-02-09 10:42

    you can avoid catching the exceptions and just use a try/finally block without the catch. And if you really need to log the exception you can use an after throwing advice, like this:

    public aspect AspectServerLog {
    
        public static final Logger ERR_LOG = LoggerFactory.getLogger("error");
    
        Object around() : call (* com.abc.Iface.* (..)) {
    
            StopWatch watch = new Slf4JStopWatch();
    
            try {
                return proceed();
            } finally {
                watch.stop(thisJoinPoint.toShortString());
            }
        }
    
        after() throwing (Exception ex) : call (* com.abc.Iface.* (..)) {
            StringBuilder mesg = new StringBuilder("Exception in ");
            mesg.append(thisJoinPoint.toShortString()).append('(');
            for (Object o : thisJoinPoint.getArgs()) {
                mesg.append(o).append(',');
            }
            mesg.append(')');
    
            ERR_LOG.error(mesg.toString(), ex);
        }
    
    }
    
    0 讨论(0)
  • 2021-02-09 10:43

    I'm afraid you cannot write advice to throw exceptions that aren't declared to be thrown at the matched join point. Per: http://www.eclipse.org/aspectj/doc/released/progguide/semantics-advice.html : "An advice declaration must include a throws clause listing the checked exceptions the body may throw. This list of checked exceptions must be compatible with each target join point of the advice, or an error is signalled by the compiler."

    There has been discussion on the aspectj mailing list about improving this situation - see threads like this: http://dev.eclipse.org/mhonarc/lists/aspectj-dev/msg01412.html

    but basically what you will need to do is different advice for each variant of exception declaration. For example:

    Object around() throws ResumeServiceException, ResumeNotFoundException, TException: 
      call (* Iface.* (..) throws ResumeServiceException, ResumeNotFoundException, TException) {
    

    that will advise everywhere that has those 3 exceptions.

    0 讨论(0)
提交回复
热议问题