I am using spring mvc and I need to exclude urls from the filter-match. This means that I have static content such as images and css and js ... and I do not need to process this request, for example, from a security filter. I tried urlrewrite, but I was not able to redirect the urls directly to the defaultServlet, which is defined in the catalina web.xml file. I need to jump over filters, because I have a lot of them. Is there any way? Thanks
EDIT - I thought maybe I could create a filter that would be if I decided to jump over other filters and execute the servlet at the end. Can this be done? Thanks
source
share