1234567891011121314151617 |
- package hello;
- import com.sun.jersey.spi.resource.Singleton;
- import javax.ws.rs.GET;
- import javax.ws.rs.Path;
- import javax.ws.rs.Produces;
- @Singleton
- @Path("/plaintext")
- public class PlaintextResource {
- @GET
- @Produces("text/plain")
- public Object plaintext() {
- return "Hello, World!";
- }
- }
|