| Sign In/My Account | View Cart |
| Article: |
How Servlet Containers Work | |
| Subject: | Worry | |
| Date: | 2003-05-28 05:47:41 | |
| From: | anonymous2 | |
|
In the first listing of this article, that shows the servlet lifecicle, there is a mistake. In the init method we must call the init from de superclass.
|
||
Showing messages 1 through 2 of 2.
public class PrimitiveServlet implements Servlet {
public void init(ServletConfig config) throws ServletException {
System.out.println("init");
}
....
}