Hi,
If I have a resource class defined as below,
@Path("/category")
public class Resource {
@GET
@Path("/{page: .+}")
public Response catchAny(@PathParam("page") String page) throws IOException
{
......
}
@GET
@Path("{categoryId}")
public Response getCategory(@PathParam("categoryId")) {
......
}
}
On the client side, if the path is "/category/12", which server side method will
be called?
Thanks,
Kevin