Java Restful Web Service Tutorial with Eclipse and Tomcat - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T10:22:38Zhttp://stackoverflow.com/feeds/question/727111http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/727111/java-restful-web-service-tutorial-with-eclipse-and-tomcat5Java Restful Web Service Tutorial with Eclipse and TomcatJoe Estes2009-04-07T18:49:13Z2009-04-07T20:09:45Z
<p>Hi,</p>
<p>I was wondering if anyone could post or know of instructions on creating a simple restful web service with eclipse and deployed on tomcat. </p>
http://stackoverflow.com/questions/727111/java-restful-web-service-tutorial-with-eclipse-and-tomcat/727334#7273349Answer by Jaka Jančar for Java Restful Web Service Tutorial with Eclipse and TomcatJaka Jančar2009-04-07T19:54:40Z2009-04-07T20:09:45Z<p>I'd use JAX-RS, a very simple, minimalist, Java API for developing RESTful web services.</p>
<p>It's reference implementation, <a href="https://jersey.dev.java.net/" rel="nofollow">Jersey</a>, is very good and has a <strong>very</strong> active community. The developers answer practically every question. There are also a couple of other implementations, such as <a href="http://www.jboss.org/resteasy/" rel="nofollow">RESTEasy</a>.</p>
<p><strong>Reference material</strong></p>
<p>Reading the <a href="http://wikis.sun.com/display/Jersey/Overview%2Bof%2BJAX-RS%2B1.0%2BFeatures" rel="nofollow">Overview of JAX-RS 1.0 Features</a> should introduce you to most of the functionality of the API. In the <a href="https://jersey.dev.java.net/source/browse/%2Acheckout%2A/jersey/tags/jersey-1.0.2/jersey/getting-started.html" rel="nofollow">Getting Started</a> 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). <a href="http://wikis.sun.com/display/Jersey/Main" rel="nofollow">The wiki</a> contains a lot more info and examples, but you shouldn't need them to start working.</p>
<p><strong>Packaging</strong></p>
<p>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 <a href="http://wikis.sun.com/display/Jersey/Overview%2Bof%2BJAX-RS%2B1.0%2BFeatures#OverviewofJAX-RS1.0Features-DeployingaRESTfulWebservice" rel="nofollow">here</a> and build a WAR. If you're using Maven just set <code><packaging>war</packaging></code> in the POM and run <code>mvn package</code> and that's it!.</p>
<p>That way you can drop it in any Servlet container, including Tomcat.</p>
<p><strong>Testing while developing</strong></p>
<p>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:</p>
<p><code>
mvn org.mortbay.jetty:maven-jetty-plugin:run -Djetty.scanIntervalSeconds=3
</code></p>
<p>The <code>scanIntervalSeconds</code> option configures the plugin to refresh your classes every three seconds. This way it picks up changes as soon as you save your files, so you can develop pretty much the way you would when using an interpreted language such as PHP.</p>
<p>Enjoy and see you on the mailing lists :)</p>