Spring AOP

From My Limbic Wiki

@Aspect public class LoggingAspect {

   @AfterThrowing ("execution(* com.howtodoinjava.app.service.impl.EmployeeManagerImpl.*(..))")
   public void logAfterThrowingAllMethods() throws Throwable { ... }

}