Init method and Constructor in Servlet 3

Servlet is a Java class-a special java class and it does have a no-argument constructor. When the container loads the servlet into the memory, the no-argument constructor is called.(Till now the servlet object is not a servlet but a normal POJO – plain old java object). It becomes a servlet when it is given the ...