public interface MethodBeforeAdvice extends BeforeAdvice
AfterReturningAdvice
,
ThrowsAdvice
Modifier and Type | Method and Description |
---|---|
void |
before(java.lang.reflect.Method method,
java.lang.Object[] args,
java.lang.Object target)
Callback before a given method is invoked.
|
void before(java.lang.reflect.Method method, java.lang.Object[] args, @Nullable java.lang.Object target) throws java.lang.Throwable
method
- method being invokedargs
- arguments to the methodtarget
- target of the method invocation. May be null
.java.lang.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.