In java classes generally we do initalizations in a constructor, but in case of Servlet , init() method is written , why couldn't we do the same job in a constructor of servlet.
Will it matter if we move body of init method in constructor of servlet and keep init method blank.
thanks Amar
Amar Verma<br />---------------<br />SCJP 1.4<br />SCWCD1.4 (Preparing)<br />Dont even follow the leading path, create your own path and leave the trail.
Servlet's init method is invokes after container instantiate servlet. Servlet object made in container after constructor call, and this object requires to container to fill information like ServletConfig(i.e. init parameter info, servlet env. info, and so on..) . if u move code from init to constructor , specialy init parameter accesing code, it will not work becaus uptill then no servletconfig set by container..
A servlet MUST be intiailized by container before it can service requests. There are many things done by container behind the scene when it initializes a servlet but for now you can understand this one easily:
Before invoking your overridden init method container will read servlet inti parameter from deployment descriptor and store them on in a special object called ServletConfig object.
There are three ways of getting this done by container:
1. Do not override init() at all. In this case container will call hidden version of init method init(ServletConfig config) this comes from Servlet interface implementation class.
2. Override this method and call super.init() method as a very first line inside method.
3. Override init() method of Generic servlet. This method is called by init(config)
Hope I have been clear enough while explaining this!
SCWCD 1.4<br />---------------------<br />Ability is what you're capable of. <br />Motivation determines what you do. <br />Attitude determines how well you do it.<br />---------------------
The government thinks you are too stupid to make your own lightbulb choices. But this tiny ad thinks you are smart: