explain filters in java?
Answers were Sorted based on User's Feedback
Answer / srikanth
filters are used to preprocessing and postprocessing of
tasks like login,authorization,data compression,data
encoding etc
for this u need to override intit(),dofilter(),and destroy()
Is This Answer Correct ? | 16 Yes | 0 No |
Answer / suresh royal
Filter is a special web resource program that is capable of
trapping the request and taking the response of other web
resource programs.
Filter is a interface .
A servlet program which is implemented javax.servlet.Filter
interface is called "Servlet Filter"
Filter having three methods..
==================================
init(FilterConfig fg)
DoFilter(SReq req ,Sres res,FilterChain fc)
destroy()
Is This Answer Correct ? | 7 Yes | 0 No |
What is session?
How can an existing session be invalidated?
What is the use of java servlet api?
What is the default http method in the servlet?
Explain mvc pattern.
Is JSP Thread Safe ???? How To make JSP thrad safe ?????
what is servlet chaining?
What is servlet lazy loading?
what is multiple server?
Which is better approach among four(HttpSession,cookie,URL Rewriting, Hidden Fields) Session Tracking technic's ? Why ?
What methods do we use in Servlet to Applet communication?
Is java servlet still used?