Aspect Oriented Programming With Spring
Fleeting- Référence externe : https://docs.spring.io/spring-framework/docs/4.2.x/spring-framework-reference/html/aop.html#aop-understanding-aop-proxies
10. Aspect Oriented Programming with Spring
It is important to grasp the fact that Spring AOP is proxy-based.
in AOP the unit of modularity is the aspect
Aspect: a modularization of a concern that cuts across multiple classes.
Spring AOP is proxy-based. It is vitally important that you grasp the semantics of what that last statement actually means before you write your own aspects or use any of the Spring AOP-based aspects supplied with the Spring Framework.