So I\'ve got a code:
@Path(\"/foo\") public class Hello { @GET @Produces(\"text/html\") public String getHtml(@Context Request request, @Context HttpServlet
To get value of the @Path parameter:
@Path
String path = Hello.class.getAnnotation(Path.class).value();
Similarly, Once you have hold of Method getHtml
Method
getHtml
Method m = Hello.class.getMethod("getHtml", ..); String mime = m.getAnnotation(Produces.class).value;