程序包 infra.aop
接口 MethodBeforeAdvice
- 所有超级接口:
Advice,BeforeAdvice
- 所有已知实现类:
AspectJMethodBeforeAdvice
Advice invoked before a method is invoked. Such advices cannot
prevent the method call proceeding, unless they throw a Throwable.
- 从以下版本开始:
- 3.0
- 作者:
- Rod Johnson, TODAY 2021/2/20 22:16
- 另请参阅:
-
方法概要
-
方法详细资料
-
before
Callback before a given method is invoked.- 参数:
invocation- the method invocation join-point- 抛出:
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.
-