| jwebapp.controller.InitDestroy
All known Subclasses: jwebapp.controller.InitDestroyHandler,
InitDestroy | public interface InitDestroy (Code) | | The interface is used to handle servlet startup and shutdown events and can be used for any purpose.
|
destroy | public void destroy(ServletContext context) throws Exception(Code) | | Handle servlet shutdown event. If your application requires any processing prior to shutting down, this is the place to do it.
Parameters: context - an instance of ServletContext |
init | public void init(ServletContext context) throws Exception(Code) | | Handle servlet startup event. If your application requires any setup prior to fulfilling requests, this is the place to do it.
Parameters: context - an instance of ServletContext |
|
|