Example & Tutorial understanding programming in easy ways.

What is Aspect Oriented Programming(AOP)?and Where to use AOP?

Aspect Oriented Programming (AOP) compliments OOPs in the sense that it also provides modularity. But the key unit of modularity is aspect than class. AOP breaks the program logic into distinct parts (called concerns). It is used to increase modularity by cross-cutting concerns.Enterprise applications have some common cross-cutting concerns that is applicable for different types of Objects and application modules, such as logging, transaction management, data validation, authentication etc. In Object Oriented Programming, modularity of application is achieved by Classes whereas in AOP application modularity is achieved by Aspects and they are configured to cut across different classes methods.


 AOP is mostly used in following cases:
1 to provide declarative enterprise services such as declarative transaction management.
2 It allows users to implement custom aspects.

Read More →