Skip to content

Commit 966c563

Browse files
Ananthu-Gopiiluwatar
authored andcommitted
Update Readme.md (iluwatar#815)
Added a tutorial link for intercepting filter design pattern
1 parent 150f727 commit 966c563

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

intercepting-filter/README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,19 @@ Provide pluggable filters to conduct necessary pre-processing and
1414
post-processing to requests from a client to a target
1515

1616
![alt text](./etc/intercepting-filter.png "Intercepting Filter")
17-
17+
18+
19+
1820
## Applicability
1921
Use the Intercepting Filter pattern when
2022

2123
* a system uses pre-processing or post-processing requests
2224
* a system should do the authentication/ authorization/ logging or tracking of request and then pass the requests to corresponding handlers
2325
* you want a modular approach to configuring pre-processing and post-processing schemes
2426

27+
## Tutorials
28+
* [Introduction to Intercepting Filter Pattern in Java](https://www.baeldung.com/intercepting-filter-pattern-in-java)
29+
2530
## Real world examples
2631

2732
* [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)

0 commit comments

Comments
 (0)