InterviewSolution
| 1. |
What Do You Mean By Aspect ? |
|
Answer» A modularization of a concern that cuts across MULTIPLE objects. Transaction management is a good example of a crosscutting concern in J2EE applications. In Spring AOP, aspects are IMPLEMENTED USING regular classes (the schema-based APPROACH) or regular classes annotated with the @Aspect annotation (@AspectJ style). A modularization of a concern that cuts across multiple objects. Transaction management is a good example of a crosscutting concern in J2EE applications. In Spring AOP, aspects are implemented using regular classes (the schema-based approach) or regular classes annotated with the @Aspect annotation (@AspectJ style). |
|