InterviewSolution
| 1. |
Define Aop Terminologies In Spring? |
|
Answer» Aspect: In multiple classes, the MODULARIZATION of concerns that acts as crosscutting concerns. Example :Transaction management Join POINT: Join Point is a point during the execution of the method. Advice: At a join point, the action taken by aspect is Advice. Pointcut: Those predicates which matches join point is CALLED Pointcut. Weaving: Other application type can be linked with aspect and that is known as weaving. Introduction: Introduction is defining additional methods fields for a type. Target object: Those objects which are advised by aspects are Target Object. AOP proxy: AOP framework creates an object to meet aspect CONTRACT, that object is AOP proxy. Aspect: In multiple classes, the modularization of concerns that acts as crosscutting concerns. Example :Transaction management Join Point: Join Point is a point during the execution of the method. Advice: At a join point, the action taken by aspect is Advice. Pointcut: Those predicates which matches join point is called Pointcut. Weaving: Other application type can be linked with aspect and that is known as weaving. Introduction: Introduction is defining additional methods fields for a type. Target object: Those objects which are advised by aspects are Target Object. AOP proxy: AOP framework creates an object to meet aspect contract, that object is AOP proxy. |
|