Can we write a constructor for a Servlet class ? if yes how ?
if no why not ?
Answer Posted / sekhar babu
yes, we can write constructor on our own but it should be
no argument public constructor only, cause container will
create the object so it needs no argument constructor.
| Is This Answer Correct ? | 22 Yes | 1 No |
Post New Answer View All Answers
What is a generic servlet?
What are the different types of servlets?
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!
Which exception is thrown if the servlet is not initialized properly?
What is the use of servlet context?
Can we refresh servlet in client and server side automatically?
Explain web container.
What is the effective way to make sure all the servlets are accessible only when user has a valid session?
Which is the methods of generated servlet?
Which is better jsp or servlet?
What is servlet and how it works?
Define servlet mapping?
What is the difference between forward () and sendredirect () functions in servlet? Explain
If my browser does not support cookie, and my server sends a cookie instance what will happen?
What are the different ways we can maintain state between requests?