Hi,
I was wondering if anyone could post or know of instructions on creating a simple restful web service with eclipse and deployed on tomcat.
|
6
|
Hi, I was wondering if anyone could post or know of instructions on creating a simple restful web service with eclipse and deployed on tomcat.
|
||
|
|
|
I'd use JAX-RS, a very simple, minimalist, Java API for developing RESTful web services. It's reference implementation, Jersey, is very good and has a very active community. The developers answer practically every question. There are also a couple of other implementations, such as RESTEasy. Reference material Reading the Overview of JAX-RS 1.0 Features should introduce you to most of the functionality of the API. In the Getting Started guide is information on how to include Jersey as a dependency into your project if you're using Maven or Ant (I strongly recommend using Maven). The wiki contains a lot more info and examples, but you shouldn't need them to start working. Packaging In many examples and in the Getting Started guide I linked to, you'll see them creating a Main class which starts the Grizzly Web container and sets the root resource. I would avoid doing that and instead extend the JAX-RS's Application class like described here and build a WAR. If you're using Maven just set That way you can drop it in any Servlet container, including Tomcat. Testing while developing I don't know if Tomcat has a similar Maven plugin, but you can run your project "exploded" (without requiring repackaging) using Jetty with this one-liner:
The Enjoy and see you on the mailing lists :) |
|||
|
|