@GET@Produces(MediaType.TEXT_PLAIN)publicStringsayHello(){return"HelloWorld!";}@GET@Path("/{param}")@Produces("text/plain;charset=UTF-8")publicStringsayHelloToUTF8(@PathParam("param")Stringname){return"Hello"