Originally posted by chinnu chinnu: if two clients call same servlet…what will happen means init() method called by only once what will happen if second client calls same servlet?
init only gets called when the servlet is initialized. No subsequent requests will cause init to be called.