Tag: aop
Spring AOP Terminology, Terms We Should Know Before Entering The AOP
Let us see the terms we should know before moving forward into spring AOP (Aspect Oriented Programming). Friends these are very important, in fact spring AOP is nothing but knowing these terms in detail, noting in AOP 🙂 But…
Spring Aspect Oriented Programming – Aspect Introduction & Example
Yeah.., will see what is the meaning of this term Aspect in spring AOP. An aspect represent the cross-cutting functionality name, remember just name only. One real time service required for a business logic is called one Aspect. Aspect…
Spring AOP – Types Of Advice With Complete Explanation
We did see about Aspect already, Advice is the implementation of Aspect. An Advice provides the code for implementation of the service. As an example consider logging service, logging is an Aspect and Advice denotes the implementation of Log4j….
NameMatchMethodPointcut Class In Spring AOP
NameMatchMethodPointcut class is going to verify whether the method names of a spring bean class are matching with the given criteria or not. While configuring this pointcut class into xml, we use mappedName or mappedNames property of the class…