From: "Maxim Patramanskij" <[EMAIL PROTECTED]>
> Not only.
>
> init() method automatically called by servlet container if
> load-on-startup order defined for given servlet in deployment
> descriptor(web.xml).

This is not quite right. As I think milt already explained, the
init(ServletConfig) method is *always* called by the container.

If the load-on-startup order is specified then that controls when the
init(ServletConfig) method is called. If the startup order is not
specified then the container decides when to call the method.

Whatever the start order though it is *always* called before the servlet
service's a request.


Nic Ferrier

___________________________________________________________________________
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff SERVLET-INTEREST".

Archives: http://archives.java.sun.com/archives/servlet-interest.html
Resources: http://java.sun.com/products/servlet/external-resources.html
LISTSERV Help: http://www.lsoft.com/manuals/user/user.html

Reply via email to