Spring AOP
Introduction Spring AOP (Aspect Oriented Programming) compliments OOPs as it also provides modularity. But The key unit of modularity in OOP is the class, whereas in AOP the unit of modularity is the aspect. AOP breaks the program logic into distinct parts (called concerns). It is used to increase modularity by cross-cutting concerns such as transaction management, […]