티스토리 뷰
실행시간 측정하는 3가지 방법
StopWatch - spring
StopWatch stopWatch = new StopWatch();
stopWatch.start();
//...
//...
//...
stopWatch.stop();
System.out.println("소요시간:"+stopWatch.getTotalTimeMillis()+"ms");
System.out.println(stopWatch.prettyPrint());
* apache comm-lang3에서도 제공되지만 둘다 thread safe 하지 않음
Instant
Instant stime = Instant.now();
//...
//...
//...
Instant etime = Instant.now();
System.out.println("소요시간:"+Duration.between(stime, etime).toMillis()+"ms");
System.currentTimeMillis()
long stime = System.currentTimeMillis();
//...
//...
//...
System.out.println("소요시간:"+(System.currentTimeMillis()-stime)+"ms");
'Java' 카테고리의 다른 글
람다 표현식 간단 정리 (0) | 2021.05.07 |
---|---|
[JUnit]System.out.println ()의 단위 테스트 예제 (0) | 2021.05.07 |
이클립스에서 static import 쉽게 가져오기 (0) | 2021.05.04 |
String format 사용법 (0) | 2020.04.07 |
[java]6자리 인증 번호 생성하기 예제 (0) | 2020.04.07 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- SHEETJS
- REST
- sample
- 타임리프
- java
- springboot
- Spring Boot
- UI
- 엑셀
- spring
- 스프링부트
- lombok
- 샘플
- 설정
- example
- cache
- mapToList
- listToMap
- thymeleaf
- restful서비스
- AG-GRID
- 메시지
- mybatis
- ag grid
- Javascript
- oracle
- 스프링
- RESTful
- 그리드
- 예제
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
글 보관함