Telmo S� wrote:

> Hello!
> Please, correct me if i'm wrong, the init method is run only one time per
> servlet.
> After the first time, requests go directly to service, right?
>

Yes, that is correct.

The servlet engine ensures that the init() method has returned successfully
(no exceptions) before the first call to service() starts.  After that, a
direct call happens to service() for each request.  Before the servlet is
retired, the destroy() method is called once.

>
> thank you
>                 telmo
>

Craig McClanahan

___________________________________________________________________________
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