Hello!
I`m new in RS. I`ve started with jersey and got a little problem: I
mapped jersey servlet to "resource/*" and created resources with
@Path("/") and @Path("{project}/"). When I'm trying to GET
"
http://localhost/resource/" it returns the "{project}/" resource, not
"/". The uriInfo.getPathParameters().getFirst("project") returns
"resource"... Is it possible to bind resource to "/"?
Thanks in advance.