package hello; import javax.ws.rs.GET; import javax.ws.rs.Path; import javax.ws.rs.Produces; import javax.ws.rs.core.MediaType; @Path("plaintext") public class PlaintextService { @GET @Produces(MediaType.TEXT_PLAIN) public String getIt() { return "Hello, World!"; } }