What will happen inside init() in servlet. my interviewer
asked servlet lifecycle. i said "once servlet is loaded in
to memory init() will be called which performs servlet
initialization " . Again interview asked what values will be
initialized . what is difference between init() and
init(ServletConfig config).
Answer Posted / manidhar
Your superclass includes two versions of init(),one that
takes a ServletConfig and a convenience version thats no -
arg. The3 inherited init(ServletConfig) method calls the no-
arg init method, so the only one u need to override is the
no-arg version.
no law that stops u from overriding the one that takes a
ServletConfig,but if u do then u better call super.init
(ServletConfig) but theres really NO reason why u need to
override the init(SC) method, since u can always get ur
ServletConfig by calling inherited getServletConfig()
method.
correct me if am wrong
| Is This Answer Correct ? | 3 Yes | 3 No |
Post New Answer View All Answers
Is static a keyword in java?
What is a return in java?
How listener identify that the event came from a particular object?
What is a final class ?
What is the vector class in java programming?
What is the purpose of sizeof operator?
Define Multiprogramming and Multiprocessing in java.
What is the use of http-tunneling in rmi?
What are the types of sockets in java?
What are the two types of exceptions in java? Which are the differences between them?
Explain notifyall() method of object class ?
What is the common usage of serialization? What exceptions occur during serialization?
Name some classes present in java.util.regex package.
Explain 5 features introduced in jdk 1.7?
What is an argument in java?