I have a bunch of filters configured in my webapp, the UrlRewrite filter
being the first one in the chain.
I noticed a strange behavior, url's that were rewritten bypassed all the
subsequent filters. On looking into the UrlRewriteFilter source, I spotted
this code
if (!requestRewritten) {
> chain.doFilter(hsRequest, urlRewriteWrappedResponse);
> }
I am trying to understand what does this mean. Should UrlRewrite be the last
filter in the chain? If yes, why? As in, why should all other filters be
skipped when the url is rewritten?
Cheers
Avlesh