Google News
logo
Java Springs - Interview Questions
Which are some of the Advice types used in Spring AOP.
* Before advice is run before the method.
* After returning advice which is run after the method successfully executes.
* After throwing advice which is run after the method if an exception is thrown.
* After finally advice is run after the method regardless of how a join point exists.
* Around advice is run before and after the method.
Advertisement