What is the purpose of filters in Tomcat?
In Tomcat, a Filter is a component used to preprocess and postprocess requests and responses before they reach or leave a servlet. Filters can perform functions such as logging, authentication, data compression, and cross-origin resource sharing. By utilizing Filters, developers can customize the handling of requests and responses without modifying servlet code, making it possible to achieve more flexible and extensible functionality.