Skip to content

Instantly share code, notes, and snippets.

@tjquinno
Last active October 3, 2019 23:26
Show Gist options
  • Save tjquinno/a2d5ea8e7fbe2195de3d9c5bb1b3163e to your computer and use it in GitHub Desktop.
Save tjquinno/a2d5ea8e7fbe2195de3d9c5bb1b3163e to your computer and use it in GitHub Desktop.
package com.mycorp.myapp;
public class MyEndpoints {
@GET
@Metered(name = "greetings", reusable = true)
@Produces(MediaType.TEXT_PLAIN)
public String greet() {...}
@GET
@Path("/fancy")
@Metered(name = "greetings", reusable = true)
@Produces(MediaType.HTML)
public String greetHTML() {...}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment