Answer Posted / 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 |
Post New Answer View All Answers
Can you send an authentication error from a servlet?
When servlet is loaded?
What are the phases of servlet life cycle?
What is the use of attribute in servlets?
What if you need to span your transaction across multiple servlet invocations?
Which protocol will be used by browser and servlet to communicate
Why is httpservlet declared abstract?
How to create war file?
How do you invoke a servelt?
What are the benefits of using servlet over cgi?
What are the phases of a servlet life cycle?
Hello, My project requirement is like I need to create a web page using MVC pattern. I hava a bean class, jsp page, servlet, service and dao. My jsp has two fields. One is dropdown list. The option values has to get populated from the database table. The other one is a text box and its value has to come from database table. As of now I have defined the fields in bean class, got the values from database using arraylists in dao class and I called this from service class. Can anyone please tell me the workflow of how the servlet will get this arraylist and populate the arraylist values as dropdown options in jsp page? Also I would like to know the role of bean class in MVC pattern? Thanks in advance!
What is the use of httpservletrequestwrapper?
What do you mean by default initialization in java servlet?
What is the process for chaining servlet?