程序包 infra.aop
接口 AdvisedSupportListener
public interface AdvisedSupportListener
Listener to be registered on
ProxyCreatorSupport objects
Allows for receiving callbacks on activation and change of advice.- 从以下版本开始:
- 3.0
- 作者:
- Rod Johnson, Juergen Hoeller, TODAY 2021/4/11 18:04
- 另请参阅:
-
方法概要
修饰符和类型方法说明voidactivated(AdvisedSupport advised) Invoked when the first proxy is created.voidadviceChanged(AdvisedSupport advised) Invoked when advice is changed after a proxy is created.
-
方法详细资料
-
activated
Invoked when the first proxy is created.- 参数:
advised- the AdvisedSupport object
-
adviceChanged
Invoked when advice is changed after a proxy is created.- 参数:
advised- the AdvisedSupport object
-