RequestDumperFilter.java
上传用户:bj_pst
上传日期:2019-07-07
资源大小:7353k
文件大小:7k
源码类别:

Java编程

开发平台:

Java

  1. /*
  2. * Licensed to the Apache Software Foundation (ASF) under one or more
  3. * contributor license agreements.  See the NOTICE file distributed with
  4. * this work for additional information regarding copyright ownership.
  5. * The ASF licenses this file to You under the Apache License, Version 2.0
  6. * (the "License"); you may not use this file except in compliance with
  7. * the License.  You may obtain a copy of the License at
  8. *
  9. *     http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS,
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. * See the License for the specific language governing permissions and
  15. * limitations under the License.
  16. */
  17. package filters;
  18. import java.io.IOException;
  19. import java.io.PrintWriter;
  20. import java.io.StringWriter;
  21. import java.sql.Timestamp;
  22. import java.util.Enumeration;
  23. import java.util.Locale;
  24. import javax.servlet.Filter;
  25. import javax.servlet.FilterChain;
  26. import javax.servlet.FilterConfig;
  27. import javax.servlet.ServletContext;
  28. import javax.servlet.ServletException;
  29. import javax.servlet.ServletRequest;
  30. import javax.servlet.ServletResponse;
  31. import javax.servlet.http.Cookie;
  32. import javax.servlet.http.HttpServletRequest;
  33. /**
  34.  * Example filter that dumps interesting state information about a request
  35.  * to the associated servlet context log file, before allowing the servlet
  36.  * to process the request in the usual way.  This can be installed as needed
  37.  * to assist in debugging problems.
  38.  *
  39.  * @author Craig McClanahan
  40.  * @version $Revision: 466607 $ $Date: 2006-10-21 17:09:50 -0600 (Sat, 21 Oct 2006) $
  41.  */
  42. public final class RequestDumperFilter implements Filter {
  43.     // ----------------------------------------------------- Instance Variables
  44.     /**
  45.      * The filter configuration object we are associated with.  If this value
  46.      * is null, this filter instance is not currently configured.
  47.      */
  48.     private FilterConfig filterConfig = null;
  49.     // --------------------------------------------------------- Public Methods
  50.     /**
  51.      * Take this filter out of service.
  52.      */
  53.     public void destroy() {
  54.         this.filterConfig = null;
  55.     }
  56.     /**
  57.      * Time the processing that is performed by all subsequent filters in the
  58.      * current filter stack, including the ultimately invoked servlet.
  59.      *
  60.      * @param request The servlet request we are processing
  61.      * @param result The servlet response we are creating
  62.      * @param chain The filter chain we are processing
  63.      *
  64.      * @exception IOException if an input/output error occurs
  65.      * @exception ServletException if a servlet error occurs
  66.      */
  67.     public void doFilter(ServletRequest request, ServletResponse response,
  68.                          FilterChain chain)
  69. throws IOException, ServletException {
  70.         if (filterConfig == null)
  71.     return;
  72. // Render the generic servlet request properties
  73. StringWriter sw = new StringWriter();
  74. PrintWriter writer = new PrintWriter(sw);
  75. writer.println("Request Received at " +
  76.        (new Timestamp(System.currentTimeMillis())));
  77. writer.println(" characterEncoding=" + request.getCharacterEncoding());
  78. writer.println("     contentLength=" + request.getContentLength());
  79. writer.println("       contentType=" + request.getContentType());
  80. writer.println("            locale=" + request.getLocale());
  81. writer.print("           locales=");
  82. Enumeration locales = request.getLocales();
  83. boolean first = true;
  84. while (locales.hasMoreElements()) {
  85.     Locale locale = (Locale) locales.nextElement();
  86.     if (first)
  87.         first = false;
  88.     else
  89.         writer.print(", ");
  90.     writer.print(locale.toString());
  91. }
  92. writer.println();
  93. Enumeration names = request.getParameterNames();
  94. while (names.hasMoreElements()) {
  95.     String name = (String) names.nextElement();
  96.     writer.print("         parameter=" + name + "=");
  97.     String values[] = request.getParameterValues(name);
  98.     for (int i = 0; i < values.length; i++) {
  99.         if (i > 0)
  100.     writer.print(", ");
  101. writer.print(values[i]);
  102.     }
  103.     writer.println();
  104. }
  105. writer.println("          protocol=" + request.getProtocol());
  106. writer.println("        remoteAddr=" + request.getRemoteAddr());
  107. writer.println("        remoteHost=" + request.getRemoteHost());
  108. writer.println("            scheme=" + request.getScheme());
  109. writer.println("        serverName=" + request.getServerName());
  110. writer.println("        serverPort=" + request.getServerPort());
  111. writer.println("          isSecure=" + request.isSecure());
  112. // Render the HTTP servlet request properties
  113. if (request instanceof HttpServletRequest) {
  114.     writer.println("---------------------------------------------");
  115.     HttpServletRequest hrequest = (HttpServletRequest) request;
  116.     writer.println("       contextPath=" + hrequest.getContextPath());
  117.     Cookie cookies[] = hrequest.getCookies();
  118.             if (cookies == null)
  119.                 cookies = new Cookie[0];
  120.     for (int i = 0; i < cookies.length; i++) {
  121.         writer.println("            cookie=" + cookies[i].getName() +
  122.        "=" + cookies[i].getValue());
  123.     }
  124.     names = hrequest.getHeaderNames();
  125.     while (names.hasMoreElements()) {
  126.         String name = (String) names.nextElement();
  127. String value = hrequest.getHeader(name);
  128.         writer.println("            header=" + name + "=" + value);
  129.     }
  130.     writer.println("            method=" + hrequest.getMethod());
  131.     writer.println("          pathInfo=" + hrequest.getPathInfo());
  132.     writer.println("       queryString=" + hrequest.getQueryString());
  133.     writer.println("        remoteUser=" + hrequest.getRemoteUser());
  134.     writer.println("requestedSessionId=" +
  135.    hrequest.getRequestedSessionId());
  136.     writer.println("        requestURI=" + hrequest.getRequestURI());
  137.     writer.println("       servletPath=" + hrequest.getServletPath());
  138. }
  139. writer.println("=============================================");
  140. // Log the resulting string
  141. writer.flush();
  142. filterConfig.getServletContext().log(sw.getBuffer().toString());
  143. // Pass control on to the next filter
  144.         chain.doFilter(request, response);
  145.     }
  146.     /**
  147.      * Place this filter into service.
  148.      *
  149.      * @param filterConfig The filter configuration object
  150.      */
  151.     public void init(FilterConfig filterConfig) throws ServletException {
  152. this.filterConfig = filterConfig;
  153.     }
  154.     /**
  155.      * Return a String representation of this object.
  156.      */
  157.     public String toString() {
  158. if (filterConfig == null)
  159.     return ("RequestDumperFilter()");
  160. StringBuffer sb = new StringBuffer("RequestDumperFilter(");
  161. sb.append(filterConfig);
  162. sb.append(")");
  163. return (sb.toString());
  164.     }
  165. }