| java.lang.Object filters.RequestDumperFilter
RequestDumperFilter | final public class RequestDumperFilter implements Filter(Code) | | Example filter that dumps interesting state information about a request
to the associated servlet context log file, before allowing the servlet
to process the request in the usual way. This can be installed as needed
to assist in debugging problems.
author: Craig McClanahan version: $Revision: 1.2 $ $Date: 2004/03/18 16:40:33 $ |
Method Summary | |
public void | destroy() Take this filter out of service. | public void | doFilter(ServletRequest request, ServletResponse response, FilterChain chain) Time the processing that is performed by all subsequent filters in the
current filter stack, including the ultimately invoked servlet. | public void | init(FilterConfig filterConfig) Place this filter into service. | public String | toString() Return a String representation of this object. |
destroy | public void destroy()(Code) | | Take this filter out of service.
|
doFilter | public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException(Code) | | Time the processing that is performed by all subsequent filters in the
current filter stack, including the ultimately invoked servlet.
Parameters: request - The servlet request we are processing Parameters: result - The servlet response we are creating Parameters: chain - The filter chain we are processing exception: IOException - if an input/output error occurs exception: ServletException - if a servlet error occurs |
toString | public String toString()(Code) | | Return a String representation of this object.
|
|
|