i have a filter that must be applied to all files format, except one (.jsp).
<filter-mapping>
<filter-name>FilterNAME</filter-name>
<url-pattern>*</url-pattern>
</filter-mapping>
Now with that i can apply a filter to all kind of files. I want to know if is possible to declare a url-pattern that excludes the jsp using only one filter mapping.