Java Servlet Filter Introduction
Java Servlet Filter is the most important web component in java web application. It can intercept both requests and responses in the HTTP web communication. It can extract and manipulate the data exchanged between the client and the web server. So you can write code to pre-process the request and post-process the response with it. …