接口 AfterReturningAdvice

    • 方法详细资料

      • afterReturning

        void afterReturning​(Object returnValue,
                            Method method,
                            Object[] args,
                            Object target)
                     throws Throwable
        Callback after a given method successfully returned.
        参数:
        returnValue - the value returned by the method, if any
        method - method being invoked
        args - arguments to the method
        target - target of the method invocation. May be null.
        抛出:
        Throwable - if this object wishes to abort the call. Any exception thrown will be returned to the caller if it's allowed by the method signature. Otherwise the exception will be wrapped as a runtime exception.