#463 Added javax.servlet.Filter to real world examples of intercepting filter

This commit is contained in:
Przemek Nowak
2016-07-17 21:24:12 +02:00
parent 0fbbd8dc81
commit f7b7f15ec8
2 changed files with 1 additions and 1 deletions

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