| Author |
what if we override the init(ServletConfig) and dont call super()
|
yogendra singh
Greenhorn
Joined: Jan 08, 2004
Posts: 21
|
|
|
what if we override the init(ServletConfig) and dont call super(). will it create the instance of servlet.what the mean fo passing servletConfig object to the servlet other than initialze parameter and giving referenve of server environment.
|
 |
Vadiraj Deshpande
Ranch Hand
Joined: Aug 16, 2000
Posts: 78
|
|
Hi, If we override init(ServletConfig) method and don't call super(servletConfig) then the servletConfig reference is not stored in the GenericServlet and if we call getServletConfig() we get null. If we want to override the init method, we can use other init() of GenericServlet method which has no parameters. Regards, -Vadiraj
|
 |
 |
|
|
subject: what if we override the init(ServletConfig) and dont call super()
|
|
|