Basically I have a requirement to track time spent in a method using custom annotation. (I know spring AOP can be used for this, but we can not use it in our product).
public class TimeCounterDemo {
@TimeCounter
public void trackMyTimeSpentUsingAnnotation()
{
//some heavy processing stuff
}
}
public @interface TimeCounter {
//need help with this implementation.
}
So, my requirement is to complete the TimeCounter
annotation.
The requirement are simple -
- Log time of method start.
- Log time of method end.
- Log total time spent in method.
- Name of method executed
Could someone help on how to implement this annotation to above requirements.
Thanks in advance.
There are already many libraries that have such annotations available. If you want your own implementation, one of the appraoches would be to use dynamic proxies:
Here's how your
TimeCounterDemo
may look like:TimeCounter (Annotation)
ITimerCounterDemo (Interface)
TimerCounterDemo (Implementation of above interface)
TimerProxy
Testing the timer:
Output:
You can read more about it here and here