StopWatch 监控Java代码运行时间和分析性能

StopWatch监控Java代码运行时间和分析性能,

org.springframework.util.StopWatch的用法:

public static void main(String[] args) throws InterruptedException {

// 定义一个计数器

StopWatch stopWatch = new StopWatch("统一一组任务耗时");

// 统计任务一耗时

stopWatch.start("任务一");

Thread.sleep(1000);

stopWatch.stop();
​

// 统计任务二耗时

stopWatch.start("任务二");

Thread.sleep(2000);

stopWatch.stop();
​

// 打印出耗时

String result = stopWatch.prettyPrint();

System.err.println(result);

}

(第二种)Guava-1.21 类StopWatch ,

(第三种)common-lang任务执行时间监视器StopWatch

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值