Hi guys.. Well can u tell me that why there is need of
"init()" , i mean why can not we initialize the servlet object
with the help of constructors?
Thank you.
Answer Posted / karnbakar
as a programmer u cant create object for servlet ,container
invokes default constructor of the servlet
Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is the use of httpservletrequestwrapper?
What are the advantages of cookies?
Explain the concept of ssi ?
What is the difference between a generic servlet and http servlet?
What methods do you use in servlet - applet communication?
What are the phases of the servlet life cycle?
What is the difference between portlet and servlet?
Elucidate servlet attributes and its scope?
What is servlet container?
What is the difference between jsp and servlet life cycle?
What's the advantages using servlets than using cgi?
What is difference between GenericServlet and HttpServlet?
Can we refresh servlet in client and server side automatically?
What are the types of servlet?
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!