Created
September 4, 2018 20:39
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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