Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 롬복주의점
- Thread Multiplexing
- python-socketio
- 도커
- FunctionalInterface
- Spring
- 프로세스
- strict stubbing
- custom annotation
- 쓰레드 라이브러리
- sql-mappler
- AOP
- Process
- rainbow table
- functional interface
- none이미지
- ReflectUtils
- task_struct
- hiberbate
- SystemCall
- OS
- 문자열 리터럴
- 함수형 인터페이스
- 운영체제
- spring-data-jpa
- 문자열 불변성
- java.util.function
- @Header
- Thread Library
- django-crontab
Archives
- Today
- Total
목록custom annotation (1)
JH's Develog
[SpringCore] Custom Annotation과 AOP로 메서드 실행시간 측정하기
이번 포스팅에서는 Custom Annotation과 @Around를 활용해서 메서드의 실행시간을 측정 해보겠습니다. 커스텀 어노테이션 생성 먼저 Timer라는 Custom Annotation을 생성해줍니다. @Target({ElementType.TYPE, ElementType.METHOD}) @Retention(RetentionPolicy.RUNTIME) public @interface Timer {} @Target은 어노테이션을 붙일 수 있는 대상을 지정하는 역할을 하며 들어가는 파라미터는 다음과 같습니다. ElementType.TYPE : 클래스, 인터페이스, 열거 타입에 어노테이션을 붙일 수 있습니다. ElementType.CONSTRUCTOR : 생성자에 어노테이션을 붙일 수 있습니다. Eleme..
Spring
2021. 12. 25. 02:49