How exactly does an @Around advice work in Spring AOP?
I am studying Spring AOP module and I have some doubts about how exactly works the AROUND advice. Reading the official documentation: http://docs.spring.io/spring/docs/current/spring-framework-reference/html/aop.html I can read this about the AROUND ADVICE : Around advice: Advice that surrounds a join point such as a method invocation. This is the most powerful kind of advice. Around advice can perform custom behavior before and after the method invocation. It is also responsible for choosing whether to proceed to the join point or to shortcut the advised method execution by returning its own