What is needed in an app that uses JBoss 6 M2 to get annotation
discovery working?

I'm trying to create a really simple application. I just have an
index.jsp and a class with a javax.ws.rs.Path annotation. Pointing the
browser to /myapp/index.jsp works just fine, but pointing it o
/myapp/foo does not. This is the code of the class.

import javax.ws.rs.Path;
import javax.ws.rs.GET;

@Path("/foo")
class Hello {
    @GET
    public String world() {
        return "bar";
    }
}

I have no web.xml or MANIFEST.MF. I have a practically empty
application.xml. Should I have something in these or should it work
anyway?

Thanks,
Tim
_______________________________________________
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to