首頁 > 軟體

Spring Boot原始碼實現StopWatch優雅統計耗時

2022-07-27 22:02:24

引言

昨天,一位球友問我能不能給他解釋一下 @SpringBootApplication 註解是什麼意思,還有 Spring Boot 的執行原理,於是我就帶著他扒拉了一下這個註解的原始碼,還有 SpringApplication 類的 run() 方法的原始碼,一下子他就明白了。

你別說,看原始碼的過程還真的是挺有趣,這不,我就發現了一個有意思的點。

public ConfigurableApplicationContext run(String... args) {
	StopWatch stopWatch = new StopWatch();
	stopWatch.start();
	......
	stopWatch.stop();
}

Spring Boot 是用 StopWatch 來統計耗時的,而通常情況下,我們會用 System.currentTimeMillis() 來統計耗時,對吧?程式設計喵


IT145.com E-mail:sddin#qq.com