I have a controller with a root "@Path()" annotation. I have controller handler methods in that class with "@Path()" annotations. If I supply a valid URL that matches the controller and one of the handler methods, it works fine.
If I supply a URL that matches at least the root Path for the controller, but not any of the handler methods, it understandably gets a 404 back. Is there any way I can write a handler method, along with the all-important "@Path" annotation, which will match any request that isn't matched by any of the other handler methods?
