Spring / Spring module questions
Describe AOP module in Spring framework.
Aspect Oriented Programming (AOP) enable OOP to have additional functionalities by intercepting across application modules/features.
The key unit of modularity in OOP is the class, whereas in AOP the unit of modularity is the aspect. Spring AOP (Aspect-oriented programming) framework modularize cross-cutting concerns in aspects as an interceptor to intercept processes,procedures and modules of OOP.
More Related questions...