Bootstrap

SpringBoot源码都在用的stopWatch统计耗时方法,比system.currentTimeMillis好爆了


我们在开发中通常用 system.currentTimeMillis来统计每个任务的耗时,或者记录一段时间执行的时间,但是在 spirngboot源码中用到了 stopWatch来统计耗时的方法,非常简介,好用。

引入jar包-如果是SpringBoot项目就不需要再去引入jar包

<dependency>
   <groupId>org.springframework</groupId>
   <artifactId>spring-core</artifactId>
</dependency>

springBoot的xml里面有如下jar包

 <dependency>
     <groupId>org.springframework.boot</groupId>
     <artifactId>spring-boot-starter-web</artifactId>
 </dependency>

在多任务的情况下,StopWatch的好处就能完全体现出来

单个任务示例

public class Test {
   
    public 
;