Author
when the container instatiates the servlet will it
sushindranath k
Greenhorn
Joined: Nov 30, 2006
Posts: 6
posted Dec 14, 2006 07:18:00
0
well,i want to know that when the container instatiates the servlet will it calls a default constructor and if so of which class constructor will it call is it HttpServlet/GenericServlet. Regards sushi
David O'Meara
Rancher
Joined: Mar 06, 2001
Posts: 13459
posted Dec 14, 2006 07:56:00
0
You're concentrating on the wrong thing. I don't think I have ever created a constructor for a servlet, or even worried about it. The container instanitates the servlet, you don't worry about this. The container initialises the servlet - this is where you come in.
Deepak Bala
Bartender
Joined: Feb 24, 2006
Posts: 6588
posted Dec 14, 2006 08:00:00
0
I would say three constructors ? GenericServlet -> HttpServlet -> MyServlet [EDIT]
I don't think I have ever created a constructor for a servlet, or even worried about it.
I agree. You could use the init method instead to instantiate whatever you want. [ December 14, 2006: Message edited by: John Meyers ]
SCJP 6 articles - SCJP 5/6 mock exams - SCJP Mocks - SCJP 5 Mock exam (Word document ) - SCJP 5 Mock exam in Java.Inquisition format
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56173
posted Dec 14, 2006 09:04:00
0
Please do not ask the same question more than once. I am closing this instance of the topic.
[Smart Questions ] [JSP FAQ ] [Books by Bear ] [Bear's FrontMan ] [About Bear ]
subject: when the container instatiates the servlet will it