@Path("/helloworld") public class HelloWorld { @GET @Produces("text/plain") public String hello() { return ""; } }