728x90
반응형
springstopwatch
-
Spring Stop Watch 로직 속도 체크개인 공부/spring 2024. 8. 5. 20:18
🔴 StopWatchspring에서 자체적으로 제공해주는 StopWatch 라이브러리로 간편하게 로직의 성능을 체크해볼 수 있다.🟠 사용법🟢 객체 만들기import org.springframework.util.StopWatch;StopWatch stopWatch = new StopWatch();stopWatch.start();stopWatch.stop();위와 같이 객체로써 받아오면 끝이다.그리고 start와 stop으로 시간을 체크할 수 있다.🟢 시간 체크하기stopWatch.start("Task1");stopWatch.stop();stopWatch.start("Task2");stopWatch.stop();stopWatch.start("Task3");stopWatch.stop();log.info..