I want to filter all requests to my jersey servlet so I do this:
<filter-mapping>
<filter-name>jersey</filter-name>
<url-pattern>*</url-pattern>
</filter-mapping>
Unfortunatly, this has the side-effect of catching the dev console (http://localhost:8888/_ah/admin)
Is there a way I can exclude paths matching "/_ah/*" from the filter?
Or perhaps a better way to achieve the same thing?