Can we use the constructor, instead of init(), to initialize servlet?
Created May 7, 2012
Chandra Patni No you can't. It's the container who manages the lifecycle of the sevlet not you. Also, you must call super.init() for init() to work properly.