Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
요약
메소드 성능 측정을 위해 실행 시간을 구하기 위한 aop 를 구현합니다.
작업 내용
동작 방식
ExeTimer
ElementType.TYPE
) / method 단위 (ElementType.METHOD
) 에 적용 가능RetentionPloicy.RUNTIME
: 애노테이션이 런타임 시점까지 유지되며, JVM에 의해 런타임 중에도 참조할 수 있음ExpTimerImpl
에서 런타임 도중에 리플렉션을 통해 메서드 이름을 측정하거나, 런타임 실행시간을 구하기 때문에 애노테이션의 유지 기간은 runtimeExpTimerImpl
@Pointcut
: ExeTimer 어노테이션이 붙은 메서드를 Join Point로 지정@Around("timer()")
: 애노테이션이 붙은 메서드가 실행 전 후의 동작을 기술joinPoint.proceed();
로 메서드를 실행하고 결과를 받아온다.-> 테스트 코드에서 해당 반환값을 리턴하지 않으면
null
을 리턴하는 문제가 있었다.기타 (논의하고 싶은 부분)
타 직군 전달 사항
close #135