why do we need init() rather than a constructor?
Please answer in reference of Servlet and Applet.
How does the init() of Applet differ from Servlet?
|
The more info at: http://java.sun.com/j2ee/tutorial/1_3-fcs/doc/Servlets6.html |
|||||||||||
|
|
You need both, but they perform different activities, your constructor executes at the time the object is created through a call to new, but for some type of objects where you don't control their creation, or you would rather execute some code not only after the object is created but is fully intialized, then you need an special method that someone is going to call to signal that the object is ready. That is the case specially for objects that are not managed by you, but the server, framework or whoever manages these objects. You should see this methods as a commodity provided for you on the top of the code that this object will execute on the constructor |
|||
|
|
|
It's a design choice. The servlet spec says that you must provide a no-arg constructor and you can override the However having an Personally, I don't think this is a strong design choice. It would have been much more convenient to let the web application provide servlet container with pre-instantiated servlets rather than having to let the container call the constructors of various servlets. |
|||
|
applettoo – Mohammad Faisal Feb 21 '12 at 16:46