Details
Description
I have a CXFServlet configured with a url pattern of /service/*
In my beans definition I have a <jaxrs:server address="/description">...
The service bean mapped to this has no @Path annotation, just a method with an @GET.
This leads to some odd behaviour. If the first attempt to access the servlet goes to the url "/service/description", a 404 is returned. If a trailing slash is added so the url becomes "/service/description/", the service works fine. Once any access to the servlet has matched a url correctly, then "/service/description" (no trailing slash) works fine.
It would be great if this could be accessed consistently. Either require a traliing slash or allow the request without it. Preferably the latter.