Skip to content

Instantly share code, notes, and snippets.

@jhURJQVxkx
Last active February 28, 2016 04:14
Show Gist options
  • Save jhURJQVxkx/13877616b0054bfdbc6e to your computer and use it in GitHub Desktop.
Save jhURJQVxkx/13877616b0054bfdbc6e to your computer and use it in GitHub Desktop.
NetBeansでJava WebAPI(JAX-RS jersey) ref: http://qiita.com/kaishero/items/c699c63619a76992b6f8
package javasample.jaxrswebapi;
import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.Produces;
import javax.ws.rs.core.MediaType;
@Path("/")
public class NewClass {
@GET
@Produces(MediaType.TEXT_PLAIN)
public String getMethod() {
return "OK";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment