| java.lang.Object jwebapp.controller.InitDestroyHandler
InitDestroyHandler | public class InitDestroyHandler implements InitDestroy(Code) | | The InitDestroyHandler 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 |
|
|