Created
November 7, 2017 09:16
-
-
Save mwiede/b6b0e90f70b6ea0d744ddb7f46a64b90 to your computer and use it in GitHub Desktop.
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
@Path("/example") | |
@Produces(MediaType.TEXT_PLAIN) | |
public class ExampleResource { | |
@GET | |
@Timed | |
@Metered | |
@ExceptionMetered | |
public String show() { | |
return "yay"; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment