Created
August 1, 2014 19:21
-
-
Save atishn/e0970be501831547561d to your computer and use it in GitHub Desktop.
Java Melody Configuration
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Case1 | |
@net.bull.javamelody.MonitoredWithSpring | |
public interface Test { | |
void myMethod(); | |
} | |
or | |
Case2 | |
public interface Test { | |
@net.bull.javamelody.MonitoredWithSpring | |
void myMethod(); | |
} | |
or | |
Case3 | |
@net.bull.javamelody.MonitoredWithSpring | |
public class TestImpl implements Test { | |
public void myMethod() {...} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment