Skip to content

Instantly share code, notes, and snippets.

@vvasabi
Created May 15, 2012 04:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vvasabi/2699242 to your computer and use it in GitHub Desktop.
Save vvasabi/2699242 to your computer and use it in GitHub Desktop.
web.xml installation for WrapRequestFilter
<!-- Wrap Request -->
<filter>
<filter-name>wrapRequestFilter</filter-name>
<filter-class>pkg.to.WrapRequestFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>wrapRequestFilter</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