Class | Description |
---|---|
Dispatcher |
cglib
MethodInterceptor
implementation to intercept the method invocation and invoke interceptor
components. |
Annotation Type | Description |
---|---|
Advice |
Advice is a meta annotation to indicate interceptor advice. |
After |
@After indicates that the annotated interceptor method is "After
advice". |
Around |
@Around indicates that the annotated interceptor method is "Around
advice". |
Before |
@Before indicates that the annotated interceptor method is "Before
advice". |
Intercept |
@Intercept is a meta annotation to represent "intercept annotation". |
Interceptor |
Built-in
Stereotype to indicate that the component is an interceptor. |
Throwing |
@Throwing indicates that the annotated interceptor method is
"Throwing advice". |
Copyright © 2011-2014 Eiichiro Uchiumi. All Rights Reserved.