When I decompile the GenericServlet and check the init() , I see the following code .
public void init(ServletConfig servletconfig)
throws ServletException
{
config = servletconfig;
init();
}
public void init()
throws ServletException
{
}
What is the init method actually doing here ? Am I missing something ?
From the javadoc:
So it does nothing and is just a convenience.