performance « Filter « JSP-Servlet Q&A





1. Is Tomcat's performance reduced by introducing more filters?    stackoverflow.com

Is the performance of tomcat is reduced if we implement more filters in the web application?

2. How do I make "simple" throughput servlet-filter?    stackoverflow.com

I'm looking to create a filter that can give me two things: number of request pr minute, and average responsetime pr minute. I already got the individual readings, I'm just not ...

3. Java Filters Performance Question    stackoverflow.com

I have two questions. The first is do Filters add a lot of overhead to request. We have a filter and it is set to run on the URL ...

4. impact of javax.servlet.Filter on performance?    stackoverflow.com

I would like to know if any hard data exist on the cost of using a Filter ? For instance, between using heritage on servlet for sharing a behavior, or using ...

5. Static ThreadLocal variable in a WebApp - Are there any Security/Performance issues?    stackoverflow.com

I am researching and experimenting with a ThreadLocal variable in my Java Web Application. I am using the ThreadLocal variable to store a username (collected from the session) before a ...