Re: JAX-RS on Tomcat 7 and Java 1.7
7, 2012 at 12:04 AM, wrote: > Rod Macpherson wrote: > > >I was under the impression Tomcat 7 supported JAX-RS out of the box. > > What gave you that impression? > > Mark > > > - > To unsubscrib
JAX-RS on Tomcat 7 and Java 1.7
I was under the impression Tomcat 7 supported JAX-RS out of the box. I have one jsp page (that works) and one JAX-RS annotated class: that generates a 404 error when trying to access it. @Path("foo") public class Foo { @GET String getBar() { return "bar"; } } Tried various paths, slash, no slash