InterviewSolution
Saved Bookmarks
| 1. |
What Do You Mean By Advice? |
|
Answer» ACTION taken by an aspect at a particular JOIN point. Different TYPES of advice INCLUDE "around," "before" and "after" advice. Many AOP frameworks, including Spring, model an advice as an INTERCEPTOR, maintaining a chain of interceptors "around" the join point. Action taken by an aspect at a particular join point. Different types of advice include "around," "before" and "after" advice. Many AOP frameworks, including Spring, model an advice as an interceptor, maintaining a chain of interceptors "around" the join point. |
|