@Documented @Inherited @Retention(value=RUNTIME) @Target(value=METHOD) @Advice public @interface Before
@Before
indicates that the annotated interceptor method is "Before
advice".
Before advice interceptor method is invoked before the targeting
component method has been executed.
There are several conventions on before advice method declaration:
Dispatcher
throws IllegalArgumentException
Copyright © 2011-2014 Eiichiro Uchiumi. All Rights Reserved.