@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
public @interface LogExecutionTime {
}
aspect class
@Aspect
@Component
public class LogExecutionTimeAop {
Logger log = LoggerFactory.getLogger("aopTest");
@Pointcut("@annotation(com.ecommerce.mini.anno.LogExecutionTime)")
public void logExecution() {
}
@Around("logExecution()")
public Object around(ProceedingJoinPoint joinPoint) throws Throwable {
log.debug("---> around");
long start = System.currentTimeMillis();
Object obj = joinPoint.proceed();
long executionTime = System.currentTimeMillis() - start;
log.debug("---> around " + joinPoint.getSignature() + " executed in " + executionTime + "ms");
return obj;
}
@After("logExecution()")
public void after(JoinPoint joinPoint) {
log.debug("---> after");
}
@AfterReturning(value = "logExecution()", returning = "returnObject")
public void afterReturning(JoinPoint joinPoint, Object returnObject) {
log.debug("---> AfterReturning");
}
@Before("logExecution()")
public void before(JoinPoint joinPoint) {
log.debug("---> before");
}
}
Controller
@RestController
@RequestMapping("/common")
public class CommonController {
Logger log = LoggerFactory.getLogger("aopTest");
@GetMapping("/test")
@LogExecutionTime
public ResponseEntity test() {
log.debug("do something.....");
return ResponseEntity.ok();
}
}
output
aopTest - ---> around
aopTest - ---> before
aopTest - do something.....
aopTest - ---> AfterReturning
aopTest - ---> after
aopTest - ---> around ResponseEntity com.ecommerce.mini.controller.CommonController.test(String) executed in 6ms
execution方式:
aspect class 增加
@Pointcut("execution(* com.ecommerce.mini.controller.*Controller.*(..))")
public void pointcut() {
}
output
aopTest - ---> around
aopTest - ---> before
aopTest - do something.....
aopTest - ---> AfterReturning
aopTest - ---> after
aopTest - ---> around ResponseEntity com.ecommerce.mini.controller.CommonController.test(String) executed in 6ms