AOP Overview

In any application, we will have business logic to be developed and we write multiple classes and methods accordingly to achieve it. Each class and method we develop represents some functionality of the application. What if all these classes and methods need to have some common functionality? We call such functionality or a behavior applicable […]

Share this article on

AOP : Aspect Oriented Programming

AOP : programming paradigm that aims to increase modularity by allowing the separation of cross-cutting concerns. In any Application development we will have 2 things 1)Business Logic 2)Cross cutting logic 1) : Actual business related code : ex adding an employee details to DB 2): cross-cutting concerns are aspects of a program that affect other […]

Share this article on
< Previous