Interface InterceptorManager.AroundInvokeContext

    • Method Detail

      • getInterceptorInstances

        Object[] getInterceptorInstances()
      • invokeBeanMethod

        Object invokeBeanMethod()
                         throws Throwable
        Called from Interceptor Chain to invoke the actual bean method. This method must throw any exception from the bean method *as is*, without being wrapped in an InvocationTargetException. The exception thrown from this method will be propagated through the application's interceptor code, so it must not be changed in order for any exception handling logic in that code to function properly.
        Throws:
        Throwable