com.arsdigita.acs
Class ModuleInitializer
java.lang.Object
|
+--javax.servlet.GenericServlet
|
+--javax.servlet.http.HttpServlet
|
+--com.arsdigita.acs.ModuleInitializer
- All Implemented Interfaces:
- Serializable, Servlet, ServletConfig
- public class ModuleInitializer
- extends HttpServlet
- See Also:
- Serialized Form
Method Summary |
void |
init()
A convenience method which can be overridden so that there's no need
to call super.init(config) . |
Methods inherited from class java.lang.Object |
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
ModuleInitializer
public ModuleInitializer()
init
public void init()
throws ServletException
- Description copied from class:
GenericServlet
- A convenience method which can be overridden so that there's no need
to call
super.init(config)
.
Instead of overriding GenericServlet.init(ServletConfig)
, simply override
this method and it will be called by
GenericServlet.init(ServletConfig config)
.
The ServletConfig
object can still be retrieved via GenericServlet.getServletConfig()
.
- Overrides:
init
in class GenericServlet
- Following copied from class:
javax.servlet.GenericServlet
- Throws:
ServletException
- if an exception occurs that
interrupts the servlet's
normal operation