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.

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.