From 966c56311cc774af624455165f6197a0d137c58f Mon Sep 17 00:00:00 2001 From: Anandhu Gopi Date: Sun, 4 Nov 2018 23:42:04 +0530 Subject: [PATCH] Update Readme.md (#815) Added a tutorial link for intercepting filter design pattern --- intercepting-filter/README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/intercepting-filter/README.md b/intercepting-filter/README.md index 7d53472a0..0d35044de 100644 --- a/intercepting-filter/README.md +++ b/intercepting-filter/README.md @@ -14,7 +14,9 @@ Provide pluggable filters to conduct necessary pre-processing and post-processing to requests from a client to a target ![alt text](./etc/intercepting-filter.png "Intercepting Filter") - + + + ## Applicability Use the Intercepting Filter pattern when @@ -22,6 +24,9 @@ Use the Intercepting Filter pattern when * a system should do the authentication/ authorization/ logging or tracking of request and then pass the requests to corresponding handlers * you want a modular approach to configuring pre-processing and post-processing schemes +## Tutorials +* [Introduction to Intercepting Filter Pattern in Java](https://www.baeldung.com/intercepting-filter-pattern-in-java) + ## 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)