I've run into an issue, and I'm not sure what I missed. I created a JAX-RS
service that i want to match anything that matches page/(.+)
So I added this to my class level:
@Path("page/(.+)")
@RequestScoped //CDI enabled
and method level:
@GET
@Produces("application/json")
public JSONObject getPage() throws JSONException {
When it deploys, jersey finds no matches. No indication that the service
was invoked.
Thanks!
John