Servlet Filters mapped to JSPs in Tomcat
Servlet filters were introduced in the Servlet 2.3 spec a long time ago. They’re basically classes that you can add to any Java webapp that intercept every request and can do anything you can imagine (e.g., compress output, translate, handle authentication, the only limit is yourself). They’re added into the web.xml file where every webapp starts, [...]


