StopWatch记录多个方法执行时间
【摘要】
StopWatch记录多个方法执行时间
1. StopWatch使用
springframework.util.StopWatch 提供的计时器可以满足一次性记录多个方法或业务的执行时间,最后一...
StopWatch记录多个方法执行时间
1. StopWatch使用
springframework.util.StopWatch 提供的计时器可以满足一次性记录多个方法或业务的执行时间,最后一次性输出各个业务的执行时间。
1.1. StopWatch记录多个业务执行时间实例
import org.springframework.util.StopWatch;
public class Test {
public static void main(String[] args) throws InterruptedException {
swatchTest();
}
private static void swatchTest() throws InterruptedException {
StopWatch sw = new StopWatch();
//业务一
sw.start("创建订单");
Thread.sleep(1000);
sw.stop();
//业务二
sw.start("查看订单");
Thread.sleep(2000);
sw.stop();
//查看所有业务的耗时统计情况
String result = sw.prettyPrint();
System.out.println(result);
}
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
1.2. 多个业务执行时间输出结果
StopWatch '': running time (millis) = 3001
-----------------------------------------
ms % Task name
-----------------------------------------
01000 033% 创建订单
02001 067% 查看订单
- 1
- 2
- 3
- 4
- 5
- 6
文章来源: brucelong.blog.csdn.net,作者:Bruce小鬼,版权归原作者所有,如需转载,请联系作者。
原文链接:brucelong.blog.csdn.net/article/details/105246671
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)