| Called by the servlet container to indicate to a servlet that the
servlet is being placed into service. See
javax.servlet.Servlet.init .
This implementation stores the
javax.servlet.ServletConfig object it receives from the servlet container for later use.
When overriding this form of the method, call
super.init(config) .
Parameters: config - the ServletConfig objectthat contains configutationinformation for this servlet throws: javax.servlet.ServletException - if an exception occurs thatinterrupts the servlet's normaloperation See Also: javax.servlet.UnavailableException |