Sometimes,
servlet container may create more than one instance of servlet, in this case, will these instances' init() be called.
As I have checked API, init() is not a static method, so it seems that init() will be called for each instance. However, what're inside init() should be shared with all instances, so, I'm just wondering.