Can we define constructors in Servlet?
Answers were Sorted based on User's Feedback
Answer / vivekanand prasad
The init() method creates and loads the servlet.But the servlet instance is first created through the constructor (done by Servlet container). We cannot write constructors of a servlet class with arguments in servlet (It will throw Exception). So, They provided a init() method that accepts an ServletConfig object as an argument.ServletConfig object supplies a servlet with information about its initialization (init) parameters.Servlet class cannot declare a constructor with ServletConfig object as a argument and cannot access ServletConfig object.
| Is This Answer Correct ? | 20 Yes | 3 No |
Answer / qim2010
One can definitely have constructor in servlet. Even you can
use the constructor in servlet for initialization purpose,
but this type of approach is not so common. You can perform
common operations with the constructor as you normally do.
The only thing is that you cannot call that constructor
explicitly by the new keyword as we normally do. In the case
of servlet, servlet container is responsible for
instantiating the servlet, so the constructor is also called
by servlet container only.
| Is This Answer Correct ? | 1 Yes | 0 No |
Java is fully object oriented languages or not?
Explain lazy activation?
How u validate date in DD/MM/YY format. and how u validate money in ur jsp
3 Answers Ashok Leyland, Satyam, Tech Mahindra, Tomax,
What method is invoked to cause an object to begin executing as a separate thread?
What state does a thread enter when it terminates its processing?
What is the purpose of the wait(), notify(), and notifyall() methods?
whether the connectionpooling used in struts?
What exceptions are thrown by RMI?
If we opened Windows Internet Explorer 4 times, does it starts 4 processes or 4 threads?
What is JasperReports?
What are the types of scaling?
Is the ternary operator written x : y ? Z or x ? Y : z ?