First Restful Web Service Hello World Tutorial
Tuesday, April 07, 2009
create file:
import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.Produces;
@Path ("/helloworld")
public class HelloWorldResource {
@GET
@Produces ("text/plain")
public String sayHello() {
return "Hello World";
}
}
insert in web.xml
JerseyTest
com.sun.jersey.spi.container.servlet.ServletContainer
1
JerseyTest
/*
0 Comments:
Post a Comment
Subscribe to Post Comments [Atom]
<< Home