PlaintextService.java 293 B

12345678910111213141516
  1. package hello;
  2. import javax.ws.rs.GET;
  3. import javax.ws.rs.Path;
  4. import javax.ws.rs.Produces;
  5. import javax.ws.rs.core.MediaType;
  6. @Path("plaintext")
  7. public class PlaintextService {
  8. @GET
  9. @Produces(MediaType.TEXT_PLAIN)
  10. public String getIt() {
  11. return "Hello, World!";
  12. }
  13. }