Home » #AOP

#AOP

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, […]

Spring AOP Read More »

Spring Fundamentals

Welcome to our comprehensive guide on Spring Fundamentals! In this page, we will take you on a journey to explore the core concepts and foundational principles that make Spring one of the most popular frameworks for Java application development. Spring is an open-source framework that provides a comprehensive programming and configuration model for building enterprise-grade

Spring Fundamentals Read More »

Spring

31. What is Advice in Spring and explain its types?Any action taken by an aspect at some particular joinpoint in Spring Framework is called an Advice. Spring AOP makes use of advice for maintaining a chain of interceptors “around” the joinpoint i.e. as an interceptor. Advice can be of the following types: 32. What is

Spring Read More »

Scroll to Top