Two Laptop Bag
The moose likes Servlets and the fly likes filters not clear Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Java » Servlets
Reply Bookmark "filters not clear" Watch "filters not clear" New topic
Author

filters not clear

Poornima Sharma
Ranch Hand

Joined: Sep 09, 2008
Posts: 114
Hi friends I am refering HF JSP but I am not able to understand filters .
please suggest some other books or links.

Thanks


Poornima Sharma
SCJP 6.0
Bear Bibeault
Author and ninkuma
Marshal

Joined: Jan 10, 2002
Posts: 56554
    
  14

As filters are more of a Servlet concept than JSP, i've moved this post to the Servlets forum.


[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
Bear Bibeault
Author and ninkuma
Marshal

Joined: Jan 10, 2002
Posts: 56554
    
  14

Filters are a way of executing code before and after a resource (like a servlet or JSP) gets executed. They're good for doing things that should be done for many requests, but that have nothing to do with the current request. Frequently filters are used for things like checking authentication (so that it doesn't have to be hard-coded everywhere), or to compress the response.

Filters should not be used to replace functionality that is specific to a request.

Google for "servlet filter" for more information.
 
I agree. Here's the link: http://aspose.com/file-tools
 
subject: filters not clear
 
Similar Threads
Filter Chain Order
Filters
A question on filter
Servlet Chaining??
ServletContextListener Question