Core AOP Concepts
With new technology comes new terminology to describe the technology and what can be done with it.
I will define some key AOP concepts to give you a good comprehension that will help you all along my future articles on this subject. However these terms are not Spring specific and really belong to AOP.
- Well-defined point in the execution of an application
- The point where you can insert additional logic to be execute
- Examples of Jointpoint’s
- Method invocation
- Exception being thrown
- Field modification
In Spring AOP a jointpoint always represents a method execution.
[more ...]



