How to log execution time with ExceptionHandler
I am trying to refactor my application and now i also want to use an ExceptionHandler. Therefore I already implemented some Methods like @org.springframework.web.bind.annotation.ExceptionHandler(Exception.class) public final ResponseEntity<SomeClass> handleException(Exception e) { // do something } Now I want to log the execution time of the calling method also when the ExeptionHandler method is called. In my… Read More How to log execution time with ExceptionHandler