Merge pull request #464 from pnowy/#463-chain-of-responsibility

#463 Added javax.servlet.Filter to real world examples intercepting filter
This commit is contained in:
Ilkka Seppälä
2016-07-18 09:22:34 +03:00
committed by GitHub

View File

@ -24,6 +24,7 @@ Use the Intercepting Filter pattern when
## Real world examples
* [javax.servlet.FilterChain](https://tomcat.apache.org/tomcat-8.0-doc/servletapi/javax/servlet/FilterChain.html) and [javax.servlet.Filter](https://tomcat.apache.org/tomcat-8.0-doc/servletapi/javax/servlet/Filter.html)
* [Struts 2 - Interceptors](https://struts.apache.org/docs/interceptors.html)
## Credits