Skip to content

Instantly share code, notes, and snippets.

@git-hemant
Created September 4, 2018 20:39
Show Gist options
  • Save git-hemant/de26456b3ce31765544af0c7683985aa to your computer and use it in GitHub Desktop.
Save git-hemant/de26456b3ce31765544af0c7683985aa to your computer and use it in GitHub Desktop.
How to dump all the HTTP request information (including HTTP headers) in Apache Tomcat
<filter>
<filter-name>RequestInfo</filter-name>
<filter-class>org.apache.catalina.filters.RequestDumperFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>RequestInfo</filter-name>
<url-pattern>*</url-pattern>
</filter-mapping>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment