I guess this may be a basic question.
We have a Action class, which has a protected inner class, which contain some attributes. When multiple users are accessing, app is giving wrong info back (some others user data). Basically the same kind of problem happened in
servlet and that was cleared by bringing attributes into the doGet method.
Is there any reason that the attributes in the inner class are being shared when multiple users access. And thus can cause any switched data being displayed to users.
Any suggestions are helpful.
Thanks in advance.