@Documented @Inherited @Retention(value=RUNTIME) @Target(value=METHOD) @Advice public @interface Around
@Around
indicates that the annotated interceptor method is "Around
advice".
Around advice interceptor method is invoked around the targeting
component method execution.
There are several conventions on around advice method declaration:
Invocation
or MethodInvocation
. If
the parameter type is mismatched, Dispatcher
throws
ConfigurationException
Copyright © 2011-2014 Eiichiro Uchiumi. All Rights Reserved.