1. 首页
  2. 编程语言
  3. Java
  4. aspectwerkz

aspectwerkz

上传者: 2021-05-11 03:47:57上传 RAR文件 2.72MB 热度 3次
官网关闭了,难得找到资源,分享出来 public class PerformanceAnalysis { public Object aroundMethod(JoinPoint joinPoint) throws Throwable { long begin = System.currentTimeMillis(); Object obj = joinPoint.proceed(); long end = System.nanoTime(); System.out.println("duration " + joinPoint.getSignature() + " " + (end-begin)); return obj; } } aspectwerkz.xml
下载地址
用户评论