Results 1 to 1 of 1
Thread: Servlet Life Cycle
-
Servlet Life Cycle
The javax.servlet.Servlet interface defines three methods known as life-cycle method. There signatures are:
Requests are handled by the service() method which may delegate the request to the doXxx() methods (provided its an HttpServlet).Java Code:public void init(ServletConfig config) throws ServletException public void service( ServletRequest req, ServletResponse res) throws ServletException, IOException public void destroy()
Similar Threads
-
Regarding Servlet
By Sudha in forum New To JavaReplies: 1Last Post: 02-12-2008, 12:44 AM -
JSP or Servlet
By ravian in forum JavaServer Pages (JSP) and JSTLReplies: 4Last Post: 12-03-2007, 03:00 PM -
How to mix servlet & JSP
By Swamipsn in forum Java ServletReplies: 1Last Post: 08-08-2007, 12:57 AM -
javax.servlet.ServletException: Wrapper cannot find servlet class util.t2
By osval in forum Advanced JavaReplies: 1Last Post: 08-07-2007, 03:47 PM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks