What is Aspect in AOP?- Advice: This is the additional code that you want to apply to your existing model. - Point-cut: This is the term given to the point of execution in the application at which cross-cutting concern needs to be applied. - Aspect is the combination of the point-cut and the advice is termed an aspect.What is Aspect in AOP?Aspect is a program segment that cross-cuts the core concerns of the application. For instance, after logging, different functional concerns of different modules are to be performed. So, the logging code can cross-cut these modules, though the aspect of logging is separate.
|