Tracing Jersey’s Matchers

Finally found the answer to what I looking for: How to figure out what the heck Jersey was doing when matching resources.  This answers it nicely:   Jersey now supports the same feature implemented in 1.1.5-ea-SNAPSHOT. Adding the following servlet/filter initialization parameter enables tracing: <init-param>     <param-name>com.sun.jersey.config.feature.Trace</param-name>     <param-value>true</param-value> </init-param>   Easy Peasy: http://blogs.oracle.com/sandoz/entry/tracing_in_jersey Permalink […]