| 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
|
|
|
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
|
|
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.
|
 |
 |
|
|
subject: filters not clear
|
|
|