multipe threads access: best way to handle
Hi,
I understand that we have issues when multiple threads access the instance variables in a servlet. Do we have the same issue with the local variables? I have a doGet method that has two lines of code.
line 1: read request parameters and create a data object.
line 2: make a call to facade to update this object in database.
What options I have to make sure that there are no concurrent access issues.
-Deepak

