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 a servlet?
which method in doGet or doPost is use to send binary date to server
What are the difference between HttpServlet and GenericServlets?
Which http method is said to be non-idempotent and idempotent?
What is the importance of init() method in Servlet ?
waht is the main diference b/w servelts and JSP ?
What is the difference between encodeRedirectUrl and encodeURL?
what is the difference between doGet() and doPost()?
Can we use servlets in JavaScript?
What is the use of welcome-file-list?
Describe servlet?
Is servlet a server side scripting language?