i have a bug from a user that I"m not sure its a bug or not because the
spec isn't clear:
The spec allows a service locator that has no @Path annotation on the class:
public class MyLocator {
@GET
public String foo() {..}
Now, if this class has a @Path on it, is that @Path ignored or not when
matching?
@Path("abc")
public class MyLocator {
@GET
public String foo() {...}
}
@Path("/test")
public class MyService {
@Path("/locator")
public MyLocator getLocator() {...}
}
So, to get to call teh foo() method is the path "/test/locator/abc" or
/test/locator"? Is the class level @Path ignored or not?
--
Bill Burke
JBoss, a division of Red Hat
http://bill.burkecentral.com