| Author |
init method in servlets
|
sitaram irrinki
Ranch Hand
Joined: Feb 16, 2005
Posts: 158
|
|
|
what is the special feature of init() in servlets
|
 |
Ryan McGuire
Ranch Hand
Joined: Feb 18, 2005
Posts: 952
|
|
init(ServletConfig) gets called when the servlet class is loaded. This may be the first time a client a calls it or when the application server is started, depending on <load-on-startup> tag in your web.xml file. The default implmentation of init(ServletConfig) does some stuff and then calls init(). If I understand correctly, the init() in the HttpServlet base class doesn't actually do anything. It's sole purpose is to be overridden in subclasses so that init(ServletConfig) can call it. If you have initialization to be done for your servlet, such as reading in configuration files, instantiating data structures, opening database connections, etc., override init(). Ryan [edit: added some italics] [ May 17, 2005: Message edited by: Ryan McGuire ]
|
 |
 |
|
|
subject: init method in servlets
|
|
|