1
0
mirror of synced 2026-08-06 02:08:01 +00:00

SEC-1584: Documentation of request-checking and matching process. Logging of servletPath and and pathInfo in DebugFilter for comparison.

This commit is contained in:
Luke Taylor
2010-10-03 22:53:37 +01:00
parent 0fd2c48dfb
commit f455e9a5a4
3 changed files with 112 additions and 42 deletions
@@ -41,6 +41,8 @@ class DebugFilter extends OncePerRequestFilter {
List<Filter> filters = getFilters(request);
logger.log("Request received for '" + UrlUtils.buildRequestUrl(request) + "':\n\n" +
request + "\n\n" +
"servletPath:" + request.getServletPath() + "\n" +
"pathInfo:" + request.getPathInfo() + "\n\n" +
formatFilters(filters));
fcp.doFilter(new DebugRequestWrapper(request), response, filterChain);