I have the following question:
if inside doPost method of a servet i create some local variables and pass them to static method of another class which use them and returns something...what happens when multiple thread access the doPost method, create local variables and pass thouse variables to the static method?
Is it thread safe?