Spring Boot - Aspect-Oriented Programming
Consider this advice:
What happens if
@After("execution(* service.*.process(..))")
public void afterProcess() {
System.out.println("Process finished");
}What happens if
process() throws an exception?